diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-21 12:21:26 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-21 12:21:26 +0100 |
commit | 654bc3e4d195fd26c3ca6711bdbda5455ea6bbf4 (patch) | |
tree | 29fdf922bc7a3d4615903c089c52212c4e0a9c24 /components/mail/contents/ui/main.qml | |
parent | 3b80c9362af0aef2c27fd784b53d7662997d4cb3 (diff) | |
download | kube-654bc3e4d195fd26c3ca6711bdbda5455ea6bbf4.tar.gz kube-654bc3e4d195fd26c3ca6711bdbda5455ea6bbf4.zip |
initial people popup ui
Diffstat (limited to 'components/mail/contents/ui/main.qml')
-rw-r--r-- | components/mail/contents/ui/main.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/components/mail/contents/ui/main.qml b/components/mail/contents/ui/main.qml index 2afac750..88aabf7e 100644 --- a/components/mail/contents/ui/main.qml +++ b/components/mail/contents/ui/main.qml | |||
@@ -162,6 +162,10 @@ Controls2.ApplicationWindow { | |||
162 | iconName: "user" | 162 | iconName: "user" |
163 | height: Kirigami.Units.gridUnit * 1.5 | 163 | height: Kirigami.Units.gridUnit * 1.5 |
164 | width: height | 164 | width: height |
165 | |||
166 | onClicked: { | ||
167 | people.open() | ||
168 | } | ||
165 | } | 169 | } |
166 | 170 | ||
167 | ToolButton { | 171 | ToolButton { |
@@ -309,4 +313,17 @@ Controls2.ApplicationWindow { | |||
309 | } | 313 | } |
310 | } | 314 | } |
311 | //END Search | 315 | //END Search |
316 | |||
317 | //BEGIN People | ||
318 | KubeComponents.People { | ||
319 | id: people | ||
320 | |||
321 | height: app.height * 0.85 | ||
322 | width: app.width * 0.85 | ||
323 | |||
324 | x: app.width * 0.075 | ||
325 | y: app.height * 0.075 | ||
326 | |||
327 | } | ||
328 | //END People | ||
312 | } | 329 | } |