summaryrefslogtreecommitdiffstats
path: root/components/mail/contents/ui/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/mail/contents/ui/main.qml')
-rw-r--r--components/mail/contents/ui/main.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/components/mail/contents/ui/main.qml b/components/mail/contents/ui/main.qml
index c4340465..bd0e0f31 100644
--- a/components/mail/contents/ui/main.qml
+++ b/components/mail/contents/ui/main.qml
@@ -29,6 +29,7 @@ import org.kube.framework.actions 1.0 as KubeAction
29import org.kube.framework.settings 1.0 as KubeSettings 29import org.kube.framework.settings 1.0 as KubeSettings
30import org.kube.framework.domain 1.0 as KubeFramework 30import org.kube.framework.domain 1.0 as KubeFramework
31import org.kube.components 1.0 as KubeComponents 31import org.kube.components 1.0 as KubeComponents
32import org.kube.accounts 1.0 as KubeAccounts
32 33
33Controls2.ApplicationWindow { 34Controls2.ApplicationWindow {
34 id: app 35 id: app
@@ -315,4 +316,15 @@ Controls2.ApplicationWindow {
315 } 316 }
316 //END Composer 317 //END Composer
317 318
319 //BEGIN AccountWizard
320 KubeAccounts.AccountWizard {
321 id: accountWizard
322
323 height: app.height * 0.85
324 width: app.width * 0.85
325
326 x: app.width * 0.075
327 y: 50
328 }
329 //END AccountWizard
318} 330}