diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-20 15:06:31 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-20 15:06:31 +0200 |
commit | 0840bce920ce3ddafb4ab47d29b9b0e70a200c1b (patch) | |
tree | 4b46720f8dcc9e00b61b548fb3ce36dc5e70ed7b /framework/qml/FolderListView.qml | |
parent | 4258cc28853c876886ec1ce69ddfb31e72e4ae08 (diff) | |
download | kube-0840bce920ce3ddafb4ab47d29b9b0e70a200c1b.tar.gz kube-0840bce920ce3ddafb4ab47d29b9b0e70a200c1b.zip |
use the correct (inverted) icons in folderlist
Diffstat (limited to 'framework/qml/FolderListView.qml')
-rw-r--r-- | framework/qml/FolderListView.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/qml/FolderListView.qml b/framework/qml/FolderListView.qml index b82dbe1f..11e29662 100644 --- a/framework/qml/FolderListView.qml +++ b/framework/qml/FolderListView.qml | |||
@@ -171,17 +171,17 @@ Rectangle { | |||
171 | states: [ | 171 | states: [ |
172 | State { | 172 | State { |
173 | name: "busy"; when: model.status == Kube.FolderListModel.InProgressStatus | 173 | name: "busy"; when: model.status == Kube.FolderListModel.InProgressStatus |
174 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.busy ; visible: styleData.selected } | 174 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.busy_inverted ; visible: styleData.selected } |
175 | }, | 175 | }, |
176 | State { | 176 | State { |
177 | name: "error"; when: model.status == Kube.FolderListModel.ErrorStatus | 177 | name: "error"; when: model.status == Kube.FolderListModel.ErrorStatus |
178 | //The error status should only be visible for a moment, otherwise we'll eventually always show errors everywhere. | 178 | //The error status should only be visible for a moment, otherwise we'll eventually always show errors everywhere. |
179 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.error; visible: styleData.selected } | 179 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.error_inverted; visible: styleData.selected } |
180 | }, | 180 | }, |
181 | State { | 181 | State { |
182 | name: "checkmark"; when: model.status == Kube.FolderListModel.SuccessStatus | 182 | name: "checkmark"; when: model.status == Kube.FolderListModel.SuccessStatus |
183 | //The success status should only be visible for a moment, otherwise we'll eventually always show checkmarks everywhere. | 183 | //The success status should only be visible for a moment, otherwise we'll eventually always show checkmarks everywhere. |
184 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.success; visible: styleData.selected } | 184 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.success_inverted; visible: styleData.selected} |
185 | } | 185 | } |
186 | ] | 186 | ] |
187 | } | 187 | } |