diff options
Diffstat (limited to 'framework')
-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 | } |