[shotwell] import: Fix button icons



commit 579af4e7f7fe70a2e45f87d85ff26cb9d4ce5109
Author: Jens Georg <mail jensge org>
Date:   Wed Jul 4 01:26:28 2018 +0200

    import: Fix button icons

 src/camera/ImportPage.vala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/camera/ImportPage.vala b/src/camera/ImportPage.vala
index 6970cfa9..cf6e1007 100644
--- a/src/camera/ImportPage.vala
+++ b/src/camera/ImportPage.vala
@@ -812,7 +812,7 @@ public class ImportPage : CheckerboardPage {
             
             // Import selected
             Gtk.ToolButton import_selected_button = new Gtk.ToolButton(null, null);
-            import_selected_button.set_icon_name("import");
+            import_selected_button.set_icon_name(Resources.IMPORT);
             import_selected_button.set_label(_("Import _Selected"));
             import_selected_button.is_important = true;
             import_selected_button.use_underline = true;
@@ -822,7 +822,7 @@ public class ImportPage : CheckerboardPage {
             
             // Import all
             Gtk.ToolButton import_all_button = new Gtk.ToolButton(null, null);
-            import_all_button.set_icon_name("import-all");
+            import_all_button.set_icon_name(Resources.IMPORT_ALL);
             import_all_button.set_label(_("Import _All"));
             import_all_button.is_important = true;
             import_all_button.use_underline = true;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]