aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-12 11:15:44 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-12 11:15:44 +0800
commit8a58a73369fdee04abfbfd50367c3a3803569776 (patch)
tree42cb09bb1abd686939db1adf93deaaf50d6eb7c0
parent57b5ee8ae35621a32f3fc87169ccba69a366d0cc (diff)
downloadgsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar.gz
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar.bz2
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar.lz
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar.xz
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.tar.zst
gsoc2013-evolution-8a58a73369fdee04abfbfd50367c3a3803569776.zip
Move menu items that affect a single message together, ditto with ones
2000-08-11 JP Rosevear <jpr@helixcode.com> * folder-browser-factory.c (control_activate): Move menu items that affect a single message together, ditto with ones that affect multiple messages, put a separator in. svn path=/trunk/; revision=4764
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/folder-browser-factory.c18
2 files changed, 16 insertions, 8 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index c8ed157b18..84fb17e4b9 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-08-11 JP Rosevear <jpr@helixcode.com>
+
+ * folder-browser-factory.c (control_activate): Move menu items
+ that affect a single message together, ditto with ones that
+ affect multiple messages, put a separator in.
+
2000-08-11 Christopher James Lahey <clahey@helixcode.com>
* mail-format.c, mail-tools.h, message-list.c: Fixed a warning.
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c
index 11dee84259..4d288946b5 100644
--- a/mail/folder-browser-factory.c
+++ b/mail/folder-browser-factory.c
@@ -77,24 +77,26 @@ control_activate (BonoboControl *control, BonoboUIHandler *uih,
bonobo_ui_handler_menu_new_separator (uih, "/File/<Print Placeholder>/separator1", -1);
- bonobo_ui_handler_menu_new_item (uih, "/Actions/Mark all seen",
- _("_Mark all messages seen"),
- NULL, -1,
- BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
- 0, 0, mark_all_seen, folder_browser);
-
bonobo_ui_handler_menu_new_item (uih, "/Actions/Edit Message", _("E_dit Message"),
NULL, -1,
BONOBO_UI_HANDLER_PIXMAP_STOCK,
GNOME_STOCK_MENU_MAIL_NEW,
0, 0, edit_message, folder_browser);
- bonobo_ui_handler_menu_new_item (uih, "/Actions/View Message", _("_View Message"),
+ bonobo_ui_handler_menu_new_item (uih, "/Actions/View Message",
+ _("_View Message"),
NULL, -1,
BONOBO_UI_HANDLER_PIXMAP_STOCK,
GNOME_STOCK_MENU_MAIL_NEW,
0, 0, view_message, folder_browser);
-
+
+ bonobo_ui_handler_menu_new_separator (uih, "/Actions/separator1", -1);
+
+ bonobo_ui_handler_menu_new_item (uih, "/Actions/Mark all seen",
+ _("_Mark all messages seen"),
+ NULL, -1,
+ BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
+ 0, 0, mark_all_seen, folder_browser);
bonobo_ui_handler_menu_new_item (uih, "/Actions/Expunge", _("_Expunge"),
NULL, -1,
BONOBO_UI_HANDLER_PIXMAP_STOCK,