diff options
Diffstat (limited to 'applications/kube-mail/package/contents/ui/Settings.qml')
-rw-r--r-- | applications/kube-mail/package/contents/ui/Settings.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/kube-mail/package/contents/ui/Settings.qml b/applications/kube-mail/package/contents/ui/Settings.qml index 34755df0..a3ea32f0 100644 --- a/applications/kube-mail/package/contents/ui/Settings.qml +++ b/applications/kube-mail/package/contents/ui/Settings.qml | |||
@@ -20,6 +20,7 @@ import QtQuick.Controls 1.4 | |||
20 | import QtQuick.Layouts 1.1 | 20 | import QtQuick.Layouts 1.1 |
21 | 21 | ||
22 | import org.kde.kube.settings 1.0 as KubeSettings | 22 | import org.kde.kube.settings 1.0 as KubeSettings |
23 | import org.kde.kube.accounts.maildir 1.0 as Maildir | ||
23 | 24 | ||
24 | Rectangle { | 25 | Rectangle { |
25 | id: root | 26 | id: root |
@@ -60,7 +61,7 @@ Rectangle { | |||
60 | spacing: 5 | 61 | spacing: 5 |
61 | Repeater { | 62 | Repeater { |
62 | model: ["current"] //Get from context settings | 63 | model: ["current"] //Get from context settings |
63 | delegate: MaildirAccountSettings { //This should be retrieved from the accounts plugin: KubeAccounts { identifier: modelData }.settingsUi | 64 | delegate: Maildir.AccountSettings { //This should be retrieved from the accounts plugin: KubeAccounts { identifier: modelData }.settingsUi |
64 | accountId: modelData | 65 | accountId: modelData |
65 | accountName: "Maildir" | 66 | accountName: "Maildir" |
66 | } | 67 | } |