summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r--components/package/contents/ui/NewAccountDialog.qml19
1 files changed, 17 insertions, 2 deletions
diff --git a/components/package/contents/ui/NewAccountDialog.qml b/components/package/contents/ui/NewAccountDialog.qml
index 597958cb..fe417fba 100644
--- a/components/package/contents/ui/NewAccountDialog.qml
+++ b/components/package/contents/ui/NewAccountDialog.qml
@@ -119,7 +119,7 @@ Rectangle {
119 text: "imap" 119 text: "imap"
120 120
121 onClicked: { 121 onClicked: {
122 stack.push(test) 122 stack.push(imap)
123 } 123 }
124 } 124 }
125 125
@@ -128,13 +128,17 @@ Rectangle {
128 width: pageRoot.width * 0.4 128 width: pageRoot.width * 0.4
129 129
130 text: "maildir" 130 text: "maildir"
131
132 onClicked: {
133 stack.push(maildir)
134 }
131 } 135 }
132 } 136 }
133 } 137 }
134 } 138 }
135 139
136 Component { 140 Component {
137 id: test 141 id: imap
138 142
139 Rectangle { 143 Rectangle {
140 color: "green" 144 color: "green"
@@ -145,6 +149,17 @@ Rectangle {
145 } 149 }
146 150
147 Component { 151 Component {
152 id: maildir
153
154 Rectangle {
155 color: "blue"
156
157 height: dialog.height
158 width: dialog.width
159 }
160 }
161
162 Component {
148 id: kolabnow 163 id: kolabnow
149 164
150 Item { 165 Item {