Re: [AD] Grabber glitch (A.CC thread) |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
> If we are going to make the change, at some point people will have to
> get used to ^N being new. I don't see much of a problem with the
> stable version using the old system. It is less consistent, true.
Ok, let's go for the change on mainline only. Patch applied.
--
Eric Botcazou
Index: tools/grabber.c
===================================================================
RCS file: /cvsroot/alleg/allegro/tools/grabber.c,v
retrieving revision 1.52
diff -u -r1.52 grabber.c
--- tools/grabber.c 10 May 2003 20:20:15 -0000 1.52
+++ tools/grabber.c 12 May 2003 08:00:35 -0000
@@ -115,7 +115,7 @@
static MENU file_menu[32] =
{
- { "&New\t(ctrl+W)", renewer, NULL, 0, NULL },
+ { "&New\t(ctrl+N)", renewer, NULL, 0, NULL },
{ "&Load\t(ctrl+L)", loader, NULL, 0, NULL },
{ "&Save\t(ctrl+S)", saver, NULL, 0, NULL },
{ "Save S&tripped", strip_saver, NULL, 0, NULL },
@@ -145,7 +145,7 @@
{ "&Grab\t(ctrl+G)", grabber, NULL, 0, NULL },
{ "&Export\t(ctrl+E)", exporter, NULL, 0, NULL },
{ "&Delete\t(ctrl+D)", deleter, NULL, 0, NULL },
- { "&Rename\t(ctrl+N)", renamer, NULL, 0, NULL },
+ { "&Rename\t(ctrl+M)", renamer, NULL, 0, NULL },
{ "Set &Property\t(ctrl+P)", property_insert, NULL, 0, NULL },
{ "&Shell Edit\t(ctrl+Z)", sheller, NULL, 0, NULL },
{ "", NULL, NULL, 0, NULL },
@@ -231,7 +231,7 @@
{ d_edit_proc, 439, 16, 40, 8, 0, 0, 0, 0, 4, 0, ygrid_string, NULL, NULL },
{ droplist_mod_proc, 430, 48, 195, 28, 0, 0, 0, 0, 0, 0, pack_getter, NULL, NULL },
{ prop_proc, 260, 86, 365, 107, 0, 0, 0, D_EXIT, 0, 0, prop_getter, NULL, NULL },
- { d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('w'), 0, 0, 0, renewer, NULL, NULL },
+ { d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('n'), 0, 0, 0, renewer, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('l'), 0, 0, 0, loader, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('s'), 0, 0, 0, saver, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('u'), 0, 0, 0, updater, NULL, NULL },
@@ -241,7 +241,7 @@
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('g'), 0, 0, 0, grabber, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('e'), 0, 0, 0, exporter, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('d'), 0, 0, 0, deleter, NULL, NULL },
- { d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('n'), 0, 0, 0, renamer, NULL, NULL },
+ { d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('m'), 0, 0, 0, renamer, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('p'), 0, 0, 0, property_insert, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, C('z'), 0, 0, 0, sheller, NULL, NULL },
{ d_keyboard_proc, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, quitter, NULL, NULL },