diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-10-16 04:15:07 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-10-16 04:15:07 +0800 |
commit | eee5604d5a1031faf03cc85bfefa87e2f1304b88 (patch) | |
tree | 2e5a1696621342a034b0245ce681769417dfeec2 /mail | |
parent | 144fdb17d82cc3204bfc64a25dd66434b660c9dc (diff) | |
download | gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar.gz gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar.bz2 gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar.lz gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar.xz gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.tar.zst gsoc2013-evolution-eee5604d5a1031faf03cc85bfefa87e2f1304b88.zip |
Fix broken icon for View -> Zoom -> Normal Size.
2007-10-15 Matthew Barnes <mbarnes@redhat.com>
* mail/em-folder-view.c:
Fix broken icon for View -> Zoom -> Normal Size.
svn path=/trunk/; revision=34389
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-folder-view.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 959721f7c3..e2f3258cca 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2007-10-15 Matthew Barnes <mbarnes@redhat.com> + + * em-folder-view.c: + Fix broken icon for View -> Zoom -> Normal Size. + 2007-10-12 Michael Monreal <michael.monreal@gmail.com> ** New inbox/outbox/sent icons (bug #479257) diff --git a/mail/em-folder-view.c b/mail/em-folder-view.c index 5c4cd27bc2..87249e7f7b 100644 --- a/mail/em-folder-view.c +++ b/mail/em-folder-view.c @@ -1974,7 +1974,7 @@ static EPixmap emfv_message_pixmaps[] = { E_PIXMAP ("/commands/PrintPreviewMessage", "document-print-preview", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/TextZoomIn", "zoom-in", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/TextZoomOut", "zoom-out", E_ICON_SIZE_MENU), - E_PIXMAP ("/commands/TextZoomReset", "zoom-reset", E_ICON_SIZE_MENU), + E_PIXMAP ("/commands/TextZoomReset", "zoom-original", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/ViewLoadImages", "image-x-generic", E_ICON_SIZE_MENU), E_PIXMAP ("/menu/MessagePlaceholder/Message/MessageNavigation/GoTo", "go-jump", E_ICON_SIZE_MENU), |