Bugzilla – Attachment 176207 Details for
Bug 308959
mail attachment icon is missing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Forgot Password
[patch]
Fix the problem with missing attachment icon
attachment-icon.patch (text/plain), 7.29 KB, created by
Nikolay Paskov
on 2007-10-03 19:22:42 UTC
(
hide
)
Description:
Fix the problem with missing attachment icon
Filename:
MIME Type:
Creator:
Nikolay Paskov
Created:
2007-10-03 19:22:42 UTC
Size:
7.29 KB
patch
obsolete
>Index: mail/em-folder-browser.c >=================================================================== >--- mail/em-folder-browser.c (revision 34234) >+++ mail/em-folder-browser.c (working copy) >@@ -218,7 +218,7 @@ static EMFBSearchBarItem temp_view_items > {{ N_("Read Messages"), VIEW_READ_MESSAGES, 0 }, "stock_mail-open"}, > {{ N_("Recent Messages"), VIEW_RECENT_MESSAGES, 0 }, NULL}, > {{ N_("Last 5 Days' Messages"), VIEW_LAST_FIVE_DAYS, 0 }, NULL}, >- {{ N_("Messages with Attachments"), VIEW_WITH_ATTACHMENTS, 0 }, "stock_attach"}, >+ {{ N_("Messages with Attachments"), VIEW_WITH_ATTACHMENTS, 0 }, "mail-attachment"}, > {{ N_("Important Messages"), VIEW_MESSAGES_MARKED_AS_IMPORTANT, 0}, "emblem-important"}, > {{ N_("Messages Not Junk"), VIEW_NOT_JUNK, 0 }, "stock_not-spam"}, > /* { NULL, 0, NULL }, */ >Index: mail/message-list.c >=================================================================== >--- mail/message-list.c (revision 34234) >+++ mail/message-list.c (working copy) >@@ -223,7 +223,7 @@ static struct { > { "stock_mail-unread-multiple", NULL }, > { "stock_mail-open-multiple", NULL }, > { NULL, NULL }, >- { "stock_attach", NULL }, >+ { "mail-attachment", NULL }, > { "emblem-important", NULL }, > { "stock_score-lowest", NULL }, > { "stock_score-lower", NULL }, > >Index: composer/e-msg-composer.c >=================================================================== >--- composer/e-msg-composer.c (revision 34234) >+++ composer/e-msg-composer.c (working copy) >@@ -2208,11 +2208,11 @@ static BonoboUIVerb verbs [] = { > }; > > static EPixmap pixcache [] = { >- E_PIXMAP ("/Toolbar/FileAttach", "stock_attach", E_ICON_SIZE_LARGE_TOOLBAR), >+ E_PIXMAP ("/Toolbar/FileAttach", "mail-attachment", E_ICON_SIZE_LARGE_TOOLBAR), > E_PIXMAP ("/Toolbar/FileSend", "stock_mail-send", E_ICON_SIZE_LARGE_TOOLBAR), > E_PIXMAP ("/Toolbar/FileSaveDraft", "stock_save", E_ICON_SIZE_LARGE_TOOLBAR) , > >-/* E_PIXMAP ("/menu/Insert/FileAttach", "stock_attach", E_ICON_SIZE_LARGE_TOOLBAR), */ >+/* E_PIXMAP ("/menu/Insert/FileAttach", "mail-attachment", E_ICON_SIZE_LARGE_TOOLBAR), */ > E_PIXMAP ("/commands/FileSend", "stock_mail-send", E_ICON_SIZE_MENU), > E_PIXMAP ("/commands/FileSave", "stock_save", E_ICON_SIZE_MENU), > E_PIXMAP ("/commands/FileSaveAs", "stock_save-as", E_ICON_SIZE_MENU), >@@ -3989,7 +3989,7 @@ create_composer (int visible_mask) > gtk_misc_set_alignment (GTK_MISC (p->attachment_expander_num), 1.0, 0.5); > expander_hbox = gtk_hbox_new (FALSE, 0); > >- p->attachment_expander_icon = e_icon_factory_get_image ("stock_attach", E_ICON_SIZE_MENU); >+ p->attachment_expander_icon = e_icon_factory_get_image ("mail-attachment", E_ICON_SIZE_MENU); > gtk_misc_set_alignment (GTK_MISC (p->attachment_expander_icon), 1, 0.5); > gtk_widget_set_size_request (p->attachment_expander_icon, 100, -1); > >Index: widgets/misc/e-attachment-bar.c >=================================================================== >--- widgets/misc/e-attachment-bar.c (revision 34234) >+++ widgets/misc/e-attachment-bar.c (working copy) >@@ -281,8 +281,7 @@ update (EAttachmentBar *bar) > attachment = priv->attachments->pdata[i]; > > if (!attachment->is_available_local || !attachment->body) { >- /* stock_attach would be better, but its fugly scaled up */ >- if ((pixbuf = e_icon_factory_get_icon("stock_unknown", E_ICON_SIZE_DIALOG))) { >+ if ((pixbuf = e_icon_factory_get_icon("mail-attachment", E_ICON_SIZE_DIALOG))) { > attachment->index = gnome_icon_list_append_pixbuf (icon_list, pixbuf, NULL, ""); > g_object_unref (pixbuf); > } >@@ -373,8 +372,7 @@ update (EAttachmentBar *bar) > pixbuf = e_icon_for_mime_type (mime_type, 48); > if (pixbuf == NULL) { > g_warning("cannot find icon for mime type %s (installation problem?)", mime_type); >- /* stock_attach would be better, but its fugly scaled up */ >- pixbuf = e_icon_factory_get_icon("stock_unknown", E_ICON_SIZE_DIALOG); >+ pixbuf = e_icon_factory_get_icon("mail-attachment", E_ICON_SIZE_DIALOG); > } > g_free (mime_type); > } > >Index: calendar/gui/e-day-view.c >=================================================================== >--- calendar/gui/e-day-view.c (revision 34234) >+++ calendar/gui/e-day-view.c (working copy) >@@ -1419,7 +1419,7 @@ e_day_view_realize (GtkWidget *widget) > day_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); > day_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); > day_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); >- day_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); >+ day_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); > > > /* Set the canvas item colors. */ >@@ -1493,7 +1493,7 @@ e_day_view_realize (GtkWidget *widget) > day_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); > day_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); > day_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); >- day_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); >+ day_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); > > > /* Set the canvas item colors. */ >Index: calendar/gui/e-week-view.c >=================================================================== >--- calendar/gui/e-week-view.c (revision 34234) >+++ calendar/gui/e-week-view.c (working copy) >@@ -693,7 +693,7 @@ e_week_view_realize (GtkWidget *widget) > week_view->reminder_icon = e_icon_factory_get_icon ("stock_bell", E_ICON_SIZE_MENU); > week_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); > week_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); >- week_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); >+ week_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); > week_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); > } > >Index: calendar/gui/dialogs/comp-editor.c >--- calendar/gui/dialogs/comp-editor.c 2007-10-03 19:53:01.000000000 +0300 >+++ calendar/gui/dialogs/comp-editor.c 2007-10-03 19:57:13.000000000 +0300 >@@ -1487,8 +1487,8 @@ > }; > > static EPixmap pixmaps[] = { >- E_PIXMAP ("/Toolbar/InsertAttachments", "stock_attach", E_ICON_SIZE_LARGE_TOOLBAR), >- E_PIXMAP ("/menu/Insert/Attachments/InsertAttachments", "stock_attach", E_ICON_SIZE_MENU), >+ E_PIXMAP ("/Toolbar/InsertAttachments", "mail-attachment", E_ICON_SIZE_LARGE_TOOLBAR), >+ E_PIXMAP ("/menu/Insert/Attachments/InsertAttachments", "mail-attachment", E_ICON_SIZE_MENU), > E_PIXMAP ("/Toolbar/FileSend", "stock_mail-send", E_ICON_SIZE_LARGE_TOOLBAR), > > E_PIXMAP_END >@@ -1548,7 +1548,7 @@ > gtk_misc_set_alignment (GTK_MISC (priv->attachment_expander_num), 1.0, 0.5); > expander_hbox = gtk_hbox_new (FALSE, 0); > >- attachment_pixbuf = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); >+ attachment_pixbuf = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); > priv->attachment_expander_icon = gtk_image_new_from_pixbuf (attachment_pixbuf); > gtk_misc_set_alignment (GTK_MISC (priv->attachment_expander_icon), 1, 0.5); > gtk_widget_set_size_request (priv->attachment_expander_icon, 100, -1);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
|
Diff
Attachments on
bug 308959
:
162842
| 176207 |
176212