"Go To {First,Last} Packet" don't pop up dialog boxes, they Just Do It -
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 20 Jan 2004 21:20:29 +0000 (21:20 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 20 Jan 2004 21:20:29 +0000 (21:20 +0000)
don't give their menu items a "...", as that's for menu items that pop
up dialog boxes to ask you for more information.

Give them menu accelerators that don't clash with other accelerators.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9760 f5534014-38df-0310-8fa8-9805f1628bb7

gtk/menu.c

index ce8f5b68b0a5dc40c60f92b85b19a1fac3760f9f..bf33e0c04d3e24df943118a3772174d64ae8d89b 100644 (file)
@@ -1,7 +1,7 @@
 /* menu.c
  * Menu routines
  *
- * $Id: menu.c,v 1.140 2004/01/20 18:47:24 ulfl Exp $
+ * $Id: menu.c,v 1.141 2004/01/20 21:20:29 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -159,9 +159,9 @@ static GtkItemFactoryEntry menu_items[] =
     ITEM_FACTORY_STOCK_ENTRY("/Edit/Find Pre_vious", "<control>B",
                              find_previous_cb, 0, GTK_STOCK_GO_BACK),
     ITEM_FACTORY_ENTRY("/Edit/<separator>", NULL, NULL, 0, "<Separator>", NULL),
-    ITEM_FACTORY_STOCK_ENTRY("/Edit/_Go To First Packet...", NULL,
+    ITEM_FACTORY_STOCK_ENTRY("/Edit/Go To Firs_t Packet", NULL,
                              goto_top_frame_cb, 0, GTK_STOCK_GOTO_TOP),
-    ITEM_FACTORY_STOCK_ENTRY("/Edit/_Go To Last Packet...", NULL,
+    ITEM_FACTORY_STOCK_ENTRY("/Edit/Go To _Last Packet", NULL,
                              goto_bottom_frame_cb, 0, GTK_STOCK_GOTO_BOTTOM),
     ITEM_FACTORY_STOCK_ENTRY("/Edit/_Go To Packet...", "<control>G",
                              goto_frame_cb, 0, GTK_STOCK_JUMP_TO),