summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2009-02-11 01:14:21 +0000
committerUlf Lamping <ulf.lamping@web.de>2009-02-11 01:14:21 +0000
commitbfce5dac33c15c10cd6b6ce848fbafc90abc2c61 (patch)
tree60bc8d22a4beb7d19b3a73753cec4a83685b15f4
parentf573bba2e81f908dc7986cd1a598922a1df64df3 (diff)
downloadwireshark-bfce5dac33c15c10cd6b6ce848fbafc90abc2c61.tar.gz
<control>1-6 is already used by colorizing, <shift><control>1-6 doesn't work for whatever reason, so use <alt><control>1-6
svn path=/trunk/; revision=27418
-rw-r--r--gtk/main_menu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/main_menu.c b/gtk/main_menu.c
index 20af498e74..26cdd92028 100644
--- a/gtk/main_menu.c
+++ b/gtk/main_menu.c
@@ -519,17 +519,17 @@ static GtkItemFactoryEntry menu_items[] =
{"/View/Packet _Bytes", NULL, GTK_MENU_FUNC(show_hide_cb), SHOW_HIDE_BYTE_VIEW, "<CheckItem>", NULL,},
{"/View/<separator>", NULL, NULL, 0, "<Separator>", NULL,},
{"/View/_Time Display Format", NULL, NULL, 0, "<Branch>", NULL,},
- {"/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", "<control>1", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", "<alt><control>1", GTK_MENU_FUNC(timestamp_format_cb),
TS_ABSOLUTE_WITH_DATE, "<RadioItem>", NULL,},
- {"/View/Time Display Format/Time of Day: 01:02:03.123456", "<control>2", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Time of Day: 01:02:03.123456", "<alt><control>2", GTK_MENU_FUNC(timestamp_format_cb),
TS_ABSOLUTE, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL,},
- {"/View/Time Display Format/Seconds Since Epoch (1970-01-01): 1234567890.123456", "<control>3", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Seconds Since Epoch (1970-01-01): 1234567890.123456", "<alt><control>3", GTK_MENU_FUNC(timestamp_format_cb),
TS_EPOCH, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL,},
- {"/View/Time Display Format/Seconds Since Beginning of Capture: 123.123456", "<control>4", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Seconds Since Beginning of Capture: 123.123456", "<alt><control>4", GTK_MENU_FUNC(timestamp_format_cb),
TS_RELATIVE, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL,},
- {"/View/Time Display Format/Seconds Since Previous Captured Packet: 1.123456", "<control>5", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Seconds Since Previous Captured Packet: 1.123456", "<alt><control>5", GTK_MENU_FUNC(timestamp_format_cb),
TS_DELTA, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL,},
- {"/View/Time Display Format/Seconds Since Previous Displayed Packet: 1.123456", "<control>6", GTK_MENU_FUNC(timestamp_format_cb),
+ {"/View/Time Display Format/Seconds Since Previous Displayed Packet: 1.123456", "<alt><control>6", GTK_MENU_FUNC(timestamp_format_cb),
TS_DELTA_DIS, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL,},
{"/View/Time Display Format/<separator>", NULL, NULL, 0, "<Separator>", NULL,},
{"/View/Time Display Format/Automatic (File Format Precision)", NULL, GTK_MENU_FUNC(timestamp_precision_cb),