diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-06 10:10:44 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-04-06 10:10:44 +0200 |
commit | 00cd3cf3ee0018a257517ed141466e44dd6c2ea3 (patch) | |
tree | ea8f5894933f9f535d731ae44b762cf3e976c2ac /components | |
parent | da810306662140ca9fd1ab7509f4c084e9d27337 (diff) | |
download | kube-00cd3cf3ee0018a257517ed141466e44dd6c2ea3.tar.gz kube-00cd3cf3ee0018a257517ed141466e44dd6c2ea3.zip |
use inverted status icons in folder/account column
Diffstat (limited to 'components')
-rw-r--r-- | components/kube/contents/ui/Kube.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml index 2b3c78b0..598cc6bc 100644 --- a/components/kube/contents/ui/Kube.qml +++ b/components/kube/contents/ui/Kube.qml | |||
@@ -236,19 +236,19 @@ Controls2.ApplicationWindow { | |||
236 | states: [ | 236 | states: [ |
237 | State { | 237 | State { |
238 | name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus | 238 | name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus |
239 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.busy; visible: true } | 239 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.busy_inverted; visible: true } |
240 | }, | 240 | }, |
241 | State { | 241 | State { |
242 | name: "error"; when: model.status == Kube.AccountsModel.ErrorStatus | 242 | name: "error"; when: model.status == Kube.AccountsModel.ErrorStatus |
243 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.error; visible: true } | 243 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.error_inverted; visible: true } |
244 | }, | 244 | }, |
245 | State { | 245 | State { |
246 | name: "checkmark"; when: model.status == Kube.AccountsModel.ConnectedStatus | 246 | name: "checkmark"; when: model.status == Kube.AccountsModel.ConnectedStatus |
247 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.connected; visible: true } | 247 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.connected_inverted; visible: true } |
248 | }, | 248 | }, |
249 | State { | 249 | State { |
250 | name: "disconnected"; when: model.status == Kube.AccountsModel.OfflineStatus | 250 | name: "disconnected"; when: model.status == Kube.AccountsModel.OfflineStatus |
251 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.noNetworkConnection; visible: true } | 251 | PropertyChanges { target: statusIcon; iconName: Kube.Icons.noNetworkConnection_inverted; visible: true } |
252 | } | 252 | } |
253 | ] | 253 | ] |
254 | } | 254 | } |