diff options
Diffstat (limited to 'components/accounts/contents/ui/AccountWizard.qml')
-rw-r--r-- | components/accounts/contents/ui/AccountWizard.qml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/components/accounts/contents/ui/AccountWizard.qml b/components/accounts/contents/ui/AccountWizard.qml index ddf7a6ef..e3d12638 100644 --- a/components/accounts/contents/ui/AccountWizard.qml +++ b/components/accounts/contents/ui/AccountWizard.qml | |||
@@ -42,6 +42,15 @@ Controls2.Popup { | |||
42 | id: mainView | 42 | id: mainView |
43 | 43 | ||
44 | Item { | 44 | Item { |
45 | anchors { | ||
46 | fill: parent | ||
47 | margins: Kirigami.Units.largeSpacing * 2 | ||
48 | } | ||
49 | Kirigami.Heading { | ||
50 | id: heading | ||
51 | text: "Select your new account type" | ||
52 | color: Kirigami.Theme.highlightColor | ||
53 | } | ||
45 | 54 | ||
46 | ColumnLayout { | 55 | ColumnLayout { |
47 | 56 | ||
@@ -56,7 +65,7 @@ Controls2.Popup { | |||
56 | model: ["kolabnow", "imap", "maildir", "gmail"] | 65 | model: ["kolabnow", "imap", "maildir", "gmail"] |
57 | delegate: Controls2.Button { | 66 | delegate: Controls2.Button { |
58 | Layout.fillWidth: true | 67 | Layout.fillWidth: true |
59 | text: modelData +" account" | 68 | text: modelData |
60 | onClicked: { | 69 | onClicked: { |
61 | stack.push(wizardPage.createObject(app, {accountType:modelData})) | 70 | stack.push(wizardPage.createObject(app, {accountType:modelData})) |
62 | } | 71 | } |