changeset 23944:0bc54dbc2bfc

* variable_editor (construct_tool_bar): fix the broken up icon in the toolbar
author Torsten <mttl@mailbox.org>
date Fri, 25 Aug 2017 20:55:08 +0200
parents f5b81e587bb5
children cf16f6521180
files libgui/src/variable-editor.cc
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/variable-editor.cc	Fri Aug 25 20:49:04 2017 +0200
+++ b/libgui/src/variable-editor.cc	Fri Aug 25 20:55:08 2017 +0200
@@ -176,10 +176,8 @@
 
 
   tool_bar->addSeparator ();
-  tool_bar->addAction
-    (QIcon (":/actions/icons/arrow_up.png"),
-     tr ("Up"),
-     this, SLOT (up ()));
+  tool_bar->addAction (QIcon (resource_manager::icon ("go-up")), tr ("Up"),
+                       this, SLOT (up ()));
 
   tool_bar->setEnabled (false);  // Disabled when no tab is present
 }