diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-02-07 02:07:14 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-02-07 02:07:14 +0800 |
commit | 19789f0e8d22e4898d0ac57ee2cf49ea85952e93 (patch) | |
tree | 748ef6ddc05d44fb20adcef9beffd8e0b4e33cfd /composer | |
parent | 90277b56f9de6d18038256b02c6039583222efac (diff) | |
download | gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.gz gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.zst gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.zip |
add accel and icon for the "remove" item in the popup menu. Patch from
2004-02-06 Rodney Dawes <dobey@ximian.com>
* e-msg-composer-attachment-bar.c: add accel and icon for
the "remove" item in the popup menu.
Patch from Paolo Borelli <pborelli@katamail.com>
svn path=/trunk/; revision=24653
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 6fc3cba00f..32c1ec2376 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2004-02-06 Rodney Dawes <dobey@ximian.com> + + * e-msg-composer-attachment-bar.c: add accel and icon for + the "remove" item in the popup menu. + Patch from Paolo Borelli <pborelli@katamail.com> + 2004-02-03 Chris Toshok <toshok@ximian.com> * e-msg-composer.c (e_msg_composer_guess_mime_type): use diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 9e7b42dfca..c2bad68332 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -437,13 +437,14 @@ remove_cb (GtkWidget *widget, gpointer data, GtkWidget *for_widget) remove_selected (bar); } - + /* Popup menu handling. */ static GnomeUIInfo icon_context_menu_info[] = { - GNOMEUIINFO_ITEM (N_("Remove"), - N_("Remove selected items from the attachment list"), - remove_cb, NULL), + GNOMEUIINFO_ITEM_STOCK (N_("_Remove"), + N_("Remove selected items from the attachment list"), + remove_cb, + GTK_STOCK_REMOVE), GNOMEUIINFO_MENU_PROPERTIES_ITEM (properties_cb, NULL), GNOMEUIINFO_END }; |