diff options
Diffstat (limited to 'components/mail/contents/ui/main.qml')
-rw-r--r-- | components/mail/contents/ui/main.qml | 12 |
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 | |||
29 | import org.kube.framework.settings 1.0 as KubeSettings | 29 | import org.kube.framework.settings 1.0 as KubeSettings |
30 | import org.kube.framework.domain 1.0 as KubeFramework | 30 | import org.kube.framework.domain 1.0 as KubeFramework |
31 | import org.kube.components 1.0 as KubeComponents | 31 | import org.kube.components 1.0 as KubeComponents |
32 | import org.kube.accounts 1.0 as KubeAccounts | ||
32 | 33 | ||
33 | Controls2.ApplicationWindow { | 34 | Controls2.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 | } |