aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-08-09 06:43:22 +0000
committerGuy Harris <guy@alum.mit.edu>2000-08-09 06:43:22 +0000
commit42f7676996d7212f3fd95194689fbd576cf3c357 (patch)
treeaf1afedbecf16b3b91ebb951884edaf6c039ff4a /gtk
parent4f08b6f4939d7a5b276bb5d69c17dba91cf120a7 (diff)
Give the Help menu the more-or-less canonical style from most
Motif/KDE/GNOME(?) and Windows applications, with "Help" above "About", and separated from "About" by a separator line. (This also makes "Help->Help" the default, which is probably what most users would want, especially if, as, and when we fill out the help.) svn path=/trunk/; revision=2239
Diffstat (limited to 'gtk')
-rw-r--r--gtk/menu.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/menu.c b/gtk/menu.c
index 2cdc180553..2b1641431d 100644
--- a/gtk/menu.c
+++ b/gtk/menu.c
@@ -1,7 +1,7 @@
/* menu.c
* Menu routines
*
- * $Id: menu.c,v 1.33 2000/08/08 12:24:31 deniel Exp $
+ * $Id: menu.c,v 1.34 2000/08/09 06:43:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -131,8 +131,9 @@ static GtkItemFactoryEntry menu_items[] =
/* {"/Tools/Graph", NULL, NULL, 0, NULL}, future use */
{"/Tools/_Summary", NULL, GTK_MENU_FUNC(summary_open_cb), 0, NULL},
{"/_Help", NULL, NULL, 0, "<LastBranch>" },
- {"/Help/_About Ethereal...", NULL, GTK_MENU_FUNC(about_ethereal), 0, NULL},
- {"/Help/_Help", NULL, GTK_MENU_FUNC(help_cb), 0, NULL}
+ {"/Help/_Help", NULL, GTK_MENU_FUNC(help_cb), 0, NULL},
+ {"/Help/<separator>", NULL, NULL, 0, "<Separator>"},
+ {"/Help/_About Ethereal...", NULL, GTK_MENU_FUNC(about_ethereal), 0, NULL}
};
/* calculate the number of menu_items */