summaryrefslogtreecommitdiffstats
path: root/components/accounts/AccountWizard.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/accounts/AccountWizard.qml')
-rw-r--r--components/accounts/AccountWizard.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/components/accounts/AccountWizard.qml b/components/accounts/AccountWizard.qml
index ccac252b..8cc90acb 100644
--- a/components/accounts/AccountWizard.qml
+++ b/components/accounts/AccountWizard.qml
@@ -66,6 +66,17 @@ Controls2.Popup {
66 66
67 Layout.fillWidth: true 67 Layout.fillWidth: true
68 68
69 text: "gmail account"
70
71 onClicked: {
72 stack.push(gmail)
73 }
74 }
75
76 Controls2.Button {
77
78 Layout.fillWidth: true
79
69 text: "imap account" 80 text: "imap account"
70 81
71 onClicked: { 82 onClicked: {
@@ -95,6 +106,13 @@ Controls2.Popup {
95 } 106 }
96 107
97 Component { 108 Component {
109 id: gmail
110
111 CreateGmail {
112 }
113 }
114
115 Component {
98 id: imap 116 id: imap
99 117
100 CreateImap { 118 CreateImap {