summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/NewAccountDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui/NewAccountDialog.qml')
-rw-r--r--components/package/contents/ui/NewAccountDialog.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/package/contents/ui/NewAccountDialog.qml b/components/package/contents/ui/NewAccountDialog.qml
index e565cb6a..de168de7 100644
--- a/components/package/contents/ui/NewAccountDialog.qml
+++ b/components/package/contents/ui/NewAccountDialog.qml
@@ -97,13 +97,15 @@ KubeComponents.OverlayDialog {
97 text: "kolabnow" 97 text: "kolabnow"
98 98
99 onClicked: { 99 onClicked: {
100 stack.push(kolabnow) 100 accountsController.createAccount("kolabnow");
101 root.closeDialog()
102 //stack.push(imap)
101 } 103 }
102 } 104 }
103 105
104 Button { 106 Button {
105 anchors.horizontalCenter: parent.horizontalCenter 107 anchors.horizontalCenter: parent.horizontalCenter
106 width: pageRoot.width * 0.4 108 width: pageRoot.width * 0.4
107 109
108 text: "imap" 110 text: "imap"
109 111