summaryrefslogtreecommitdiffstats
path: root/components/mail
diff options
context:
space:
mode:
Diffstat (limited to 'components/mail')
-rw-r--r--components/mail/contents/ui/main.qml17
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}