From 9d455cc2ac521b7de1756dab0534b4d0f3fc8ca8 Mon Sep 17 00:00:00 2001 From: Jim Nelson Date: Mon, 17 Sep 2012 17:49:52 -0700 Subject: [PATCH] Change icon for "Mark" menu: Closes #5788 Replaces red flag icon with a checkmark icon. --- icons/24x24/edit-flag.svg | 193 -------------------------------- icons/24x24/edit-mark.svg | 145 ++++++++++++++++++++++++ icons/CMakeLists.txt | 2 +- src/client/ui/main-toolbar.vala | 2 +- 4 files changed, 147 insertions(+), 195 deletions(-) delete mode 100644 icons/24x24/edit-flag.svg create mode 100644 icons/24x24/edit-mark.svg diff --git a/icons/24x24/edit-flag.svg b/icons/24x24/edit-flag.svg deleted file mode 100644 index ace0b3e1..00000000 --- a/icons/24x24/edit-flag.svg +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/icons/24x24/edit-mark.svg b/icons/24x24/edit-mark.svg new file mode 100644 index 00000000..af8b3c26 --- /dev/null +++ b/icons/24x24/edit-mark.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index 41132dfb..4b62f580 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt @@ -19,7 +19,7 @@ set(ICON_FILES_16 set(ICON_FILES_24 24x24/format-text-none.svg - 24x24/edit-flag.svg + 24x24/edit-mark.svg 24x24/mail-archive.svg 24x24/mail-move.svg 24x24/tag.svg diff --git a/src/client/ui/main-toolbar.vala b/src/client/ui/main-toolbar.vala index 383cbad9..75b2d703 100644 --- a/src/client/ui/main-toolbar.vala +++ b/src/client/ui/main-toolbar.vala @@ -42,7 +42,7 @@ public class MainToolbar : Gtk.Box { GearyController.ACTION_MARK_AS_MENU) as Gtk.ToggleToolButton; attach_menu(mark_menu, mark_menu_button); make_menu_dropdown_button(mark_menu_button, - IconFactory.instance.get_custom_icon("edit-flag", IconFactory.ICON_TOOLBAR), null); + IconFactory.instance.get_custom_icon("edit-mark", IconFactory.ICON_TOOLBAR), null); Gtk.Menu mark_proxy_menu = (Gtk.Menu) GearyApplication.instance.ui_manager .get_widget("/ui/ToolbarMarkMenuProxy"); add_proxy_menu(mark_menu_button, _("Mark"), mark_proxy_menu);