diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-09 18:07:44 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-09 18:07:44 +0200 |
commit | ddf3eec85e18cec7b33d7189d9ba96c527201e27 (patch) | |
tree | aa8a4bac57dac9c36a1edb70def976cc0e57c9e7 /components | |
parent | 77218b487ac7dafcd166becec75278ab2a87bcc9 (diff) | |
download | kube-ddf3eec85e18cec7b33d7189d9ba96c527201e27.tar.gz kube-ddf3eec85e18cec7b33d7189d9ba96c527201e27.zip |
Got rid of the status icons in folderlist and account switcher
Diffstat (limited to 'components')
-rw-r--r-- | components/kube/contents/ui/MailView.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/kube/contents/ui/MailView.qml b/components/kube/contents/ui/MailView.qml index c9fa47c0..997cbb7a 100644 --- a/components/kube/contents/ui/MailView.qml +++ b/components/kube/contents/ui/MailView.qml | |||
@@ -96,6 +96,10 @@ SplitView { | |||
96 | name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus | 96 | name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus |
97 | PropertyChanges { target: statusText; text: "Busy"; visible: true } | 97 | PropertyChanges { target: statusText; text: "Busy"; visible: true } |
98 | PropertyChanges { target: progressBar; visible: true } | 98 | PropertyChanges { target: progressBar; visible: true } |
99 | }, | ||
100 | State { | ||
101 | name: "error"; when: model.status == Kube.AccountsModel.ErrorStatus | ||
102 | PropertyChanges { target: statusText; text: "Error"; visible: true } | ||
99 | } | 103 | } |
100 | ] | 104 | ] |
101 | } | 105 | } |