summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-04 23:39:35 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-04 23:39:35 +0100
commit77a18a9c0ab165c6a2889b9b28e8cc8f43f8e4fb (patch)
treedd0f9de324e09901099e5eda91b4a69534cd143b /components
parent4a5e337479ea102db5444b52878e873a8a432066 (diff)
downloadkube-77a18a9c0ab165c6a2889b9b28e8cc8f43f8e4fb.tar.gz
kube-77a18a9c0ab165c6a2889b9b28e8cc8f43f8e4fb.zip
Enable kolabnow account
Diffstat (limited to 'components')
-rw-r--r--components/package/contents/ui/AccountSwitcher.qml3
-rw-r--r--components/package/contents/ui/NewAccountDialog.qml6
2 files changed, 6 insertions, 3 deletions
diff --git a/components/package/contents/ui/AccountSwitcher.qml b/components/package/contents/ui/AccountSwitcher.qml
index a29a290d..e9e9b549 100644
--- a/components/package/contents/ui/AccountSwitcher.qml
+++ b/components/package/contents/ui/AccountSwitcher.qml
@@ -79,6 +79,7 @@ Controls2.Button {
79 79
80 onClicked: { 80 onClicked: {
81 newAccountComponent.createObject(app) 81 newAccountComponent.createObject(app)
82 popup.close()
82 } 83 }
83 84
84 Component { 85 Component {
@@ -174,7 +175,7 @@ Controls2.Button {
174 175
175 onClicked: { 176 onClicked: {
176 editAccountComponent.createObject(app) 177 editAccountComponent.createObject(app)
177 dialog.visible = false 178 popup.close()
178 } 179 }
179 180
180 Component { 181 Component {
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