summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-05-12 15:32:25 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-05-12 15:32:25 +0200
commit539e992a3c5ef46807b0bff9ec7f17f349719ba4 (patch)
treea3fbe14da11e0fed4e48f06bdcbdbac4b874dd53 /components
parent137f7f09067f82ae4d520de30f31f918b2afe3c2 (diff)
downloadkube-539e992a3c5ef46807b0bff9ec7f17f349719ba4.tar.gz
kube-539e992a3c5ef46807b0bff9ec7f17f349719ba4.zip
move error view next to the account view
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/Kube.qml9
1 files changed, 5 insertions, 4 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index e5a78753..54a81112 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -134,10 +134,6 @@ Controls2.ApplicationWindow {
134 iconName: Kube.Icons.user_inverted 134 iconName: Kube.Icons.user_inverted
135 onClicked: kubeViews.setPeopleView() 135 onClicked: kubeViews.setPeopleView()
136 } 136 }
137 Kube.IconButton {
138 iconName: Kube.Icons.error_inverted
139 onClicked: kubeViews.setLogView()
140 }
141 } 137 }
142 Column { 138 Column {
143 anchors { 139 anchors {
@@ -153,6 +149,11 @@ Controls2.ApplicationWindow {
153 } 149 }
154 150
155 Kube.IconButton { 151 Kube.IconButton {
152 iconName: Kube.Icons.error_inverted
153 onClicked: kubeViews.setLogView()
154 }
155
156 Kube.IconButton {
156 iconName: Kube.Icons.menu_inverted 157 iconName: Kube.Icons.menu_inverted
157 onClicked: kubeViews.setAccountsView() 158 onClicked: kubeViews.setAccountsView()
158 } 159 }