mirror of https://github.com/GNOME/gimp.git
reordered buttons in the Interface -> Keyboard Shortcuts section to be
2004-07-28 Michael Natterer <mitch@gimp.org> * app/gui/preferences-dialog.c (prefs_dialog_new): reordered buttons in the Interface -> Keyboard Shortcuts section to be consistent with other sections which provide configure/save/clear buttons.
This commit is contained in:
parent
e36039f447
commit
f972e6aeb2
|
@ -1,3 +1,10 @@
|
|||
2004-07-28 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/gui/preferences-dialog.c (prefs_dialog_new): reordered
|
||||
buttons in the Interface -> Keyboard Shortcuts section to be
|
||||
consistent with other sections which provide configure/save/clear
|
||||
buttons.
|
||||
|
||||
2004-07-28 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/tools/gimpbycolorselecttool.c (gimp_by_color_select_tool_init)
|
||||
|
|
|
@ -1344,6 +1344,13 @@ prefs_dialog_new (Gimp *gimp,
|
|||
vbox2 = prefs_frame_new (_("Keyboard Shortcuts"),
|
||||
GTK_CONTAINER (vbox), FALSE);
|
||||
|
||||
prefs_check_button_add (object, "menu-mnemonics",
|
||||
_("Show menu _mnemonics (access keys)"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "can-change-accels",
|
||||
_("Use dynamic _keyboard shortcuts"),
|
||||
GTK_BOX (vbox2));
|
||||
|
||||
button = prefs_button_add (GTK_STOCK_PREFERENCES,
|
||||
_("Configure Keyboard Shortcuts..."),
|
||||
GTK_BOX (vbox2));
|
||||
|
@ -1351,12 +1358,6 @@ prefs_dialog_new (Gimp *gimp,
|
|||
G_CALLBACK (prefs_keyboard_shortcuts_dialog),
|
||||
gimp);
|
||||
|
||||
prefs_check_button_add (object, "menu-mnemonics",
|
||||
_("Show menu _mnemonics (access keys)"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "can-change-accels",
|
||||
_("Use dynamic _keyboard shortcuts"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "save-accels",
|
||||
_("Save keyboard shortcuts on exit"),
|
||||
GTK_BOX (vbox2));
|
||||
|
|
|
@ -1344,6 +1344,13 @@ prefs_dialog_new (Gimp *gimp,
|
|||
vbox2 = prefs_frame_new (_("Keyboard Shortcuts"),
|
||||
GTK_CONTAINER (vbox), FALSE);
|
||||
|
||||
prefs_check_button_add (object, "menu-mnemonics",
|
||||
_("Show menu _mnemonics (access keys)"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "can-change-accels",
|
||||
_("Use dynamic _keyboard shortcuts"),
|
||||
GTK_BOX (vbox2));
|
||||
|
||||
button = prefs_button_add (GTK_STOCK_PREFERENCES,
|
||||
_("Configure Keyboard Shortcuts..."),
|
||||
GTK_BOX (vbox2));
|
||||
|
@ -1351,12 +1358,6 @@ prefs_dialog_new (Gimp *gimp,
|
|||
G_CALLBACK (prefs_keyboard_shortcuts_dialog),
|
||||
gimp);
|
||||
|
||||
prefs_check_button_add (object, "menu-mnemonics",
|
||||
_("Show menu _mnemonics (access keys)"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "can-change-accels",
|
||||
_("Use dynamic _keyboard shortcuts"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "save-accels",
|
||||
_("Save keyboard shortcuts on exit"),
|
||||
GTK_BOX (vbox2));
|
||||
|
|
Loading…
Reference in New Issue