aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-26 15:17:01 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-26 15:17:01 +0000
commit47fdd93c3c5fe6ce13e098f9a79859870f1b1faf (patch)
tree3e4904216662668f317d9881f7aee7d55f7e80de /ui/gtk
parente2c680b2455b01cdd2a1d25690d711a2cdc40b18 (diff)
Restore Accelerators for "Expand Subtree", "Expand All" and "Collapse All".
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7197 svn path=/trunk/; revision=42261
Diffstat (limited to 'ui/gtk')
-rw-r--r--ui/gtk/main_menubar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/gtk/main_menubar.c b/ui/gtk/main_menubar.c
index 5ecaca2fff..7439bcb53f 100644
--- a/ui/gtk/main_menubar.c
+++ b/ui/gtk/main_menubar.c
@@ -1574,10 +1574,10 @@ static const GtkActionEntry main_menu_bar_entries[] = {
{ "/View/ZoomOut", GTK_STOCK_ZOOM_OUT, "Zoom _Out", "<control>minus", NULL, G_CALLBACK(view_zoom_out_cb) },
{ "/View/NormalSize", GTK_STOCK_ZOOM_100, "_Normal Size", "<control>equal", NULL, G_CALLBACK(view_zoom_100_cb) },
{ "/View/ResizeAllColumns", WIRESHARK_STOCK_RESIZE_COLUMNS, "Resize All Columns", "<shift><control>R", NULL, G_CALLBACK(new_packet_list_resize_columns_cb) },
- { "/View/DisplayedColumns", NULL, "Displayed Columns", NULL, NULL, NULL },
- { "/View/ExpandSubtrees", NULL, "Expand Subtrees", NULL, NULL, G_CALLBACK(expand_tree_cb) },
- { "/View/ExpandAll", NULL, "Expand All", NULL, NULL, G_CALLBACK(expand_all_cb) },
- { "/View/CollapseAll", NULL, "Collapse All", NULL, NULL, G_CALLBACK(collapse_all_cb) },
+ { "/View/DisplayedColumns", NULL, "Displayed Columns", NULL, NULL, NULL },
+ { "/View/ExpandSubtrees", NULL, "Expand Subtrees", "<shift>Right", NULL, G_CALLBACK(expand_tree_cb) },
+ { "/View/ExpandAll", NULL, "Expand All", "<control>Right", NULL, G_CALLBACK(expand_all_cb) },
+ { "/View/CollapseAll", NULL, "Collapse All", "<control>Left", NULL, G_CALLBACK(collapse_all_cb) },
{ "/View/ColorizeConversation", NULL, "Colorize Conversation",NULL, NULL, NULL },
{ "/View/ColorizeConversation/Color 1", WIRESHARK_STOCK_COLOR1, "Color 1", NULL, NULL, G_CALLBACK(view_menu_color_conv_color1_cb) },