summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-25 00:44:22 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-25 00:44:22 +0200
commitcd44f523affbaa55d74ff139e9dbb54776dc9d71 (patch)
tree7dfad872b94ac88700c44577f9cb7bc2919330ce
parent63f44f863809bb230cda405dc2c2e63b51e3c12b (diff)
downloadkube-cd44f523affbaa55d74ff139e9dbb54776dc9d71.tar.gz
kube-cd44f523affbaa55d74ff139e9dbb54776dc9d71.zip
Checkable IconButtons for the menu.
...So you know where you are.
-rw-r--r--components/kube/contents/ui/Kube.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index adce5a29..ef500a90 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -130,6 +130,8 @@ Controls2.ApplicationWindow {
130 iconName: Kube.Icons.edit_inverted 130 iconName: Kube.Icons.edit_inverted
131 onClicked: kubeViews.openComposer(false) 131 onClicked: kubeViews.openComposer(false)
132 activeFocusOnTab: true 132 activeFocusOnTab: true
133 checkable: true
134 autoExclusive: true
133 135
134 Kube.ToolTip { 136 Kube.ToolTip {
135 text: qsTr("composer") 137 text: qsTr("composer")
@@ -141,6 +143,9 @@ Controls2.ApplicationWindow {
141 iconName: Kube.Icons.mail_inverted 143 iconName: Kube.Icons.mail_inverted
142 onClicked: kubeViews.setMailView() 144 onClicked: kubeViews.setMailView()
143 activeFocusOnTab: true 145 activeFocusOnTab: true
146 checkable: true
147 checked: true
148 autoExclusive: true
144 149
145 Kube.ToolTip { 150 Kube.ToolTip {
146 text: qsTr("mails") 151 text: qsTr("mails")
@@ -152,6 +157,8 @@ Controls2.ApplicationWindow {
152 iconName: Kube.Icons.user_inverted 157 iconName: Kube.Icons.user_inverted
153 onClicked: kubeViews.setPeopleView() 158 onClicked: kubeViews.setPeopleView()
154 activeFocusOnTab: true 159 activeFocusOnTab: true
160 checkable: true
161 autoExclusive: true
155 162
156 Kube.ToolTip { 163 Kube.ToolTip {
157 text: qsTr("people") 164 text: qsTr("people")