# HG changeset patch # User Alexander Wilms , Torsten # Date 1507698383 -7200 # Node ID bdd4a8476c39a870299a36852a8a3eaef731e5bb # Parent 046593530e950a2caa115cccc10a9f45de23c40d new icon for the plot menu in the variable editor * icons_license: add new icon to the list of derived icons with elements from the tango theme * plot-xy-curve.svg/png: new icon * module.mk, resource.qrc: add png file * variable-editor.cc: set the new icon for the plot menu diff -r 046593530e95 -r bdd4a8476c39 libgui/src/icons/icons_license --- a/libgui/src/icons/icons_license Mon Oct 09 18:59:20 2017 +0200 +++ b/libgui/src/icons/icons_license Wed Oct 11 07:06:23 2017 +0200 @@ -80,4 +80,5 @@ db-step-out.svg db-step.svg db-stop.svg +plot-xy-curve.svg system-run.svg diff -r 046593530e95 -r bdd4a8476c39 libgui/src/icons/plot-xy-curve.png Binary file libgui/src/icons/plot-xy-curve.png has changed diff -r 046593530e95 -r bdd4a8476c39 libgui/src/icons/plot-xy-curve.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgui/src/icons/plot-xy-curve.svg Wed Oct 11 07:06:23 2017 +0200 @@ -0,0 +1,1214 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + diff -r 046593530e95 -r bdd4a8476c39 libgui/src/module.mk --- a/libgui/src/module.mk Mon Oct 09 18:59:20 2017 +0200 +++ b/libgui/src/module.mk Wed Oct 11 07:06:23 2017 +0200 @@ -61,6 +61,7 @@ %reldir%/icons/letter_logo_WorkspaceView.svg \ %reldir%/icons/letter_logo_ReleaseWidget.svg \ %reldir%/icons/logo.png \ + %reldir%/icons/plot-xy-curve.png \ %reldir%/icons/preferences-system.png \ %reldir%/icons/system-run.png \ %reldir%/icons/user-home.png \ diff -r 046593530e95 -r bdd4a8476c39 libgui/src/resource.qrc --- a/libgui/src/resource.qrc Mon Oct 09 18:59:20 2017 +0200 +++ b/libgui/src/resource.qrc Wed Oct 11 07:06:23 2017 +0200 @@ -45,6 +45,7 @@ icons/letter_logo_DocumentationDockWidget.png icons/letter_logo_ReleaseWidget.png icons/logo.png + icons/plot-xy-curve.png icons/preferences-system.png icons/system-run.png icons/user-home.png diff -r 046593530e95 -r bdd4a8476c39 libgui/src/variable-editor.cc --- a/libgui/src/variable-editor.cc Mon Oct 09 18:59:20 2017 +0200 +++ b/libgui/src/variable-editor.cc Wed Oct 11 07:06:23 2017 +0200 @@ -1139,7 +1139,7 @@ QToolButton *plot_tool_button = new QToolButton (m_tool_bar); plot_tool_button->setText (tr ("Plot")); - plot_tool_button->setIcon (resource_manager::icon ("applications-system")); + plot_tool_button->setIcon (resource_manager::icon ("plot-xy-curve")); plot_tool_button->setPopupMode (QToolButton::InstantPopup);