summaryrefslogtreecommitdiffstats
path: root/components/mail/contents/ui/main.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-11-17 15:54:53 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-11-17 15:58:00 +0100
commitc633f7c5fce50db60035792526b6c7e84b51149f (patch)
tree1f2bd0824f5099df5655dde75991ffc9deb4eaa5 /components/mail/contents/ui/main.qml
parentf990d02235173f2c8caa96e5f6007dc1562e10f5 (diff)
downloadkube-c633f7c5fce50db60035792526b6c7e84b51149f.tar.gz
kube-c633f7c5fce50db60035792526b6c7e84b51149f.zip
add accountwizard to mainview
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}