Commit 98f52ccf authored by Sergey Chupligin's avatar Sergey Chupligin Committed by Sergey Chupligin

[Examples] Move icons to nemo theme

parent c936b3ab
...@@ -143,9 +143,9 @@ ApplicationWindow { ...@@ -143,9 +143,9 @@ ApplicationWindow {
id: tools id: tools
title: "Nemo Touch Gallery" title: "Nemo Touch Gallery"
tools: [ ToolButton { iconSource: "/usr/share/glacier-components/images/icon_cog.png"}, tools: [ ToolButton { iconSource: "image://theme/cog"},
ToolButton { iconSource: "/usr/share/glacier-components/images/icon_edit.png"}, ToolButton { iconSource: "image://theme/edit"},
ToolButton { iconSource: "/usr/share/glacier-components/images/icon_refresh.png"} ] ToolButton { iconSource: "image://theme/refresh"} ]
//The parent of these items is null when this ToolsLayout is not used //The parent of these items is null when this ToolsLayout is not used
//(i.e. you're on a different page) so we need to check the parent, //(i.e. you're on a different page) so we need to check the parent,
...@@ -193,19 +193,19 @@ ApplicationWindow { ...@@ -193,19 +193,19 @@ ApplicationWindow {
id: tool1 id: tool1
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
iconSource: "/usr/share/glacier-components/images/icon_cog.png" iconSource: "image://theme/cog"
} }
ToolButton { ToolButton {
id: tool2 id: tool2
anchors.right: tool1.left anchors.right: tool1.left
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
iconSource: "/usr/share/glacier-components/images/icon_edit.png" iconSource: "image://theme/edit"
} }
ToolButton { ToolButton {
id: tool3 id: tool3
anchors.right: tool2.left anchors.right: tool2.left
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
iconSource: "/usr/share/glacier-components/images/icon_refresh.png" iconSource: "image://theme/refresh"
} }
}, },
ButtonRow { ButtonRow {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment