summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-02 14:28:03 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-02 14:28:03 +0200
commitd3addd8b9988d4e313b40b09588025097049944a (patch)
tree26cc4c7ba0ff6172d3ba4eec746803e0cfbd9753 /components
parent85e98907c6ea4300ad945fd3753e43cb75cafec6 (diff)
downloadkube-d3addd8b9988d4e313b40b09588025097049944a.tar.gz
kube-d3addd8b9988d4e313b40b09588025097049944a.zip
The people view is now its own view.
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/Kube.qml19
1 files changed, 2 insertions, 17 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index 7b6c9a83..bf7d987a 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -129,7 +129,7 @@ Controls2.ApplicationWindow {
129 iconName: Kube.Icons.mail_inverted 129 iconName: Kube.Icons.mail_inverted
130 130
131 onClicked: { 131 onClicked: {
132 //TODO 132 kubeViews.currentIndex = 0
133 } 133 }
134 } 134 }
135 135
@@ -137,7 +137,7 @@ Controls2.ApplicationWindow {
137 iconName: Kube.Icons.user_inverted 137 iconName: Kube.Icons.user_inverted
138 138
139 onClicked: { 139 onClicked: {
140 people.open() 140 kubeViews.currentIndex = 1
141 } 141 }
142 } 142 }
143 } 143 }
@@ -246,19 +246,4 @@ Controls2.ApplicationWindow {
246 } 246 }
247 } 247 }
248 //END Search 248 //END Search
249
250 //BEGIN People
251 Kube.Popup {
252 id: people
253 height: app.height * 0.85
254 width: app.width * 0.85
255
256 x: app.width * 0.075
257 y: app.height * 0.075
258
259 Kube.People {
260 anchors.fill: parent
261 }
262 }
263 //END People
264} 249}