mirror of https://github.com/GNOME/gimp.git
increased default undo-size to 4 MB.
2003-10-16 Sven Neumann <sven@gimp.org> * app/config/gimpcoreconfig.c: increased default undo-size to 4 MB. * app/config/gimprc-blurbs.h (UNDO_SIZE_BLURB): attempt to improve the description of the undo-size setting. * app/gui/image-menu.c (image_menu_entries): changed the default shortcut for Redo from the unergonmic Shift-Ctrl-Z to Ctrl-Y.
This commit is contained in:
parent
a351c16b1e
commit
d872565a6d
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2003-10-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/config/gimpcoreconfig.c: increased default undo-size to 4 MB.
|
||||
|
||||
* app/config/gimprc-blurbs.h (UNDO_SIZE_BLURB): attempt to improve
|
||||
the description of the undo-size setting.
|
||||
|
||||
* app/gui/image-menu.c (image_menu_entries): changed the default
|
||||
shortcut for Redo from the unergonmic Shift-Ctrl-Z to Ctrl-Y.
|
||||
|
||||
2003-10-15 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/tools/gimpmoveoptions.c (gimp_move_options_gui): changed
|
||||
|
|
|
@ -222,7 +222,7 @@ gimp_core_config_class_init (GimpCoreConfigClass *klass)
|
|||
GIMP_PARAM_CONFIRM);
|
||||
GIMP_CONFIG_INSTALL_PROP_MEMSIZE (object_class, PROP_UNDO_SIZE,
|
||||
"undo-size", UNDO_SIZE_BLURB,
|
||||
0, G_MAXULONG, 1 << 20,
|
||||
0, G_MAXULONG, 1 << 22,
|
||||
GIMP_PARAM_CONFIRM);
|
||||
GIMP_CONFIG_INSTALL_PROP_PATH (object_class,
|
||||
PROP_PLUGINRC_PATH,
|
||||
|
|
|
@ -330,7 +330,8 @@ N_("Sets the minimal number of operations that can be undone. More undo " \
|
|||
|
||||
#define UNDO_SIZE_BLURB \
|
||||
N_("Sets an upper limit to the memory that is used per image to keep " \
|
||||
"operations on the undo stack.")
|
||||
"operations on the undo stack. Regardless of this setting, at least " \
|
||||
"as many undo-levels as configured can be undone.")
|
||||
|
||||
#define USE_HELP_BLURB \
|
||||
N_("When enabled, pressing F1 will open the help browser.")
|
||||
|
|
|
@ -160,7 +160,7 @@ GimpItemFactoryEntry image_menu_entries[] =
|
|||
"<StockItem>", GTK_STOCK_UNDO },
|
||||
NULL,
|
||||
GIMP_HELP_EDIT_UNDO, NULL },
|
||||
{ { N_("/Edit/_Redo"), "<control><shift>Z",
|
||||
{ { N_("/Edit/_Redo"), "<control>Y",
|
||||
edit_redo_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REDO },
|
||||
NULL,
|
||||
|
|
|
@ -160,7 +160,7 @@ GimpItemFactoryEntry image_menu_entries[] =
|
|||
"<StockItem>", GTK_STOCK_UNDO },
|
||||
NULL,
|
||||
GIMP_HELP_EDIT_UNDO, NULL },
|
||||
{ { N_("/Edit/_Redo"), "<control><shift>Z",
|
||||
{ { N_("/Edit/_Redo"), "<control>Y",
|
||||
edit_redo_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REDO },
|
||||
NULL,
|
||||
|
|
Loading…
Reference in New Issue