diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-12 15:32:25 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-12 15:32:25 +0200 |
commit | 539e992a3c5ef46807b0bff9ec7f17f349719ba4 (patch) | |
tree | a3fbe14da11e0fed4e48f06bdcbdbac4b874dd53 | |
parent | 137f7f09067f82ae4d520de30f31f918b2afe3c2 (diff) | |
download | kube-539e992a3c5ef46807b0bff9ec7f17f349719ba4.tar.gz kube-539e992a3c5ef46807b0bff9ec7f17f349719ba4.zip |
move error view next to the account view
-rw-r--r-- | components/kube/contents/ui/Kube.qml | 9 |
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 | } |