diff options
-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 }; |