From 2085754bf0ae9a988211e8bcfb55008c523ff3b8 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Thu, 16 Jun 2016 17:04:58 +0200 Subject: add dummy maildir create account component as well --- components/package/contents/ui/NewAccountDialog.qml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'components/package/contents/ui') 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 { text: "imap" onClicked: { - stack.push(test) + stack.push(imap) } } @@ -128,13 +128,17 @@ Rectangle { width: pageRoot.width * 0.4 text: "maildir" + + onClicked: { + stack.push(maildir) + } } } } } Component { - id: test + id: imap Rectangle { color: "green" @@ -144,6 +148,17 @@ Rectangle { } } + Component { + id: maildir + + Rectangle { + color: "blue" + + height: dialog.height + width: dialog.width + } + } + Component { id: kolabnow -- cgit v1.2.3