summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-04-27 16:23:27 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-04-27 16:23:27 +0200
commit66179db165f92dcbadfac62ebcb51d133750fb35 (patch)
treef2d5e1b248a001453097f69bad9d4f7aa53f29ca
parent79a30b30ce3a643dccfb53780692db158f68923b (diff)
downloadkube-66179db165f92dcbadfac62ebcb51d133750fb35.tar.gz
kube-66179db165f92dcbadfac62ebcb51d133750fb35.zip
use iconbutton in sidebar, move account switcher to the bottom
-rw-r--r--components/kube/contents/ui/Kube.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index da6ca445..c0b8db35 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -117,7 +117,7 @@ Controls2.ApplicationWindow {
117 117
118 spacing: Kube.Units.largeSpacing - Kube.Units.smallSpacing 118 spacing: Kube.Units.largeSpacing - Kube.Units.smallSpacing
119 119
120 ToolButton { 120 Kube.IconButton {
121 iconName: Kube.Icons.search_inverted 121 iconName: Kube.Icons.search_inverted
122 height: Kube.Units.gridUnit * 1.5 122 height: Kube.Units.gridUnit * 1.5
123 width: height 123 width: height
@@ -127,7 +127,7 @@ Controls2.ApplicationWindow {
127 } 127 }
128 } 128 }
129 129
130 ToolButton { 130 Kube.IconButton {
131 height: Kube.Units.gridUnit * 1.5 131 height: Kube.Units.gridUnit * 1.5
132 width: height 132 width: height
133 133
@@ -138,7 +138,7 @@ Controls2.ApplicationWindow {
138 } 138 }
139 } 139 }
140 140
141 ToolButton { 141 Kube.IconButton {
142 height: Kube.Units.gridUnit * 1.5 142 height: Kube.Units.gridUnit * 1.5
143 width: height 143 width: height
144 144
@@ -148,11 +148,6 @@ Controls2.ApplicationWindow {
148 people.open() 148 people.open()
149 } 149 }
150 } 150 }
151
152 Kube.AccountSwitcher {
153 height: Kube.Units.gridUnit * 1.5
154 width: height
155 }
156 } 151 }
157 Column { 152 Column {
158 anchors { 153 anchors {
@@ -166,6 +161,11 @@ Controls2.ApplicationWindow {
166 height: Kube.Units.gridUnit * 1.5 161 height: Kube.Units.gridUnit * 1.5
167 width: height 162 width: height
168 } 163 }
164
165 Kube.AccountSwitcher {
166 height: Kube.Units.gridUnit * 1.5
167 width: height
168 }
169 } 169 }
170 } 170 }
171 171