Fix to use trash icon instead of delete icon
Srinivasa Ragavan <[email protected]>
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Organization | Novell Inc |
| Message-ID | <[email protected]> |
Hi, The Mail Trash folder uses DELTE stock icon, and it should use the trash icon from the theme. Attached the patch. -Srini _______________________________________________ Evolution-patches mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evolution-patches
fix-trashicon.diff
(text/x-patch, 1.7 KB)
Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/mail/ChangeLog,v retrieving revision 1.3806 diff -u -p -r1.3806 ChangeLog --- ChangeLog 20 Feb 2006 16:01:00 -0000 1.3806 +++ ChangeLog 21 Feb 2006 08:09:13 -0000 @@ -1,3 +1,8 @@ +2006-02-21 Srinivasa Ragavan <[email protected]> + + * em-folder-tree.c: (render_pixbuf): Made the trash folder use the + trask icon instead of Delete Icon from the stock. + 2006-02-20 Srinivasa Ragavan <[email protected]> ** Fixes bug #322160 and committed for PRSuman. Index: em-folder-tree.c =================================================================== RCS file: /cvs/gnome/evolution/mail/em-folder-tree.c,v retrieving revision 1.158 diff -u -p -r1.158 em-folder-tree.c --- em-folder-tree.c 8 Feb 2006 11:51:31 -0000 1.158 +++ em-folder-tree.c 21 Feb 2006 08:09:13 -0000 @@ -287,7 +287,7 @@ render_pixbuf (GtkTreeViewColumn *column folder_icons[FOLDER_ICON_NORMAL] = e_icon_factory_get_icon ("stock_folder", E_ICON_SIZE_MENU); folder_icons[FOLDER_ICON_INBOX] = e_icon_factory_get_icon ("stock_inbox", E_ICON_SIZE_MENU); folder_icons[FOLDER_ICON_OUTBOX] = e_icon_factory_get_icon ("stock_outbox", E_ICON_SIZE_MENU); - folder_icons[FOLDER_ICON_TRASH] = e_icon_factory_get_icon ("stock_delete", E_ICON_SIZE_MENU); + folder_icons[FOLDER_ICON_TRASH] = e_icon_factory_get_icon ("stock_trash_full", E_ICON_SIZE_MENU); folder_icons[FOLDER_ICON_JUNK] = e_icon_factory_get_icon ("stock_spam", E_ICON_SIZE_MENU); folder_icons[FOLDER_ICON_SHARED_TO_ME] = e_icon_factory_get_icon ("stock_shared-to-me", E_ICON_SIZE_MENU); folder_icons[FOLDER_ICON_SHARED_BY_ME] = e_icon_factory_get_icon ("stock_shared-by-me", E_ICON_SIZE_MENU);