summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--views/accounts/qml/View.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/accounts/qml/View.qml b/views/accounts/qml/View.qml
index 84ba2ef1..0bdab979 100644
--- a/views/accounts/qml/View.qml
+++ b/views/accounts/qml/View.qml
@@ -25,10 +25,10 @@ import org.kube.components.accounts 1.0 as KubeAccounts
25 25
26FocusScope { 26FocusScope {
27 id: root 27 id: root
28 //Defines whether more than one account is supported.
29 property bool singleAccountMode: false
30 //Defines available account types. 28 //Defines available account types.
31 property var availableAccountPlugins: ["kolabnow", "imap", "maildir", "gmail"] 29 property var availableAccountPlugins: ["kolabnow", "imap", "maildir", "gmail"]
30 //Defines whether more than one account is supported.
31 property bool singleAccountMode: availableAccountPlugins.length == 1
32 32
33 Controls1.SplitView { 33 Controls1.SplitView {
34 height: parent.height 34 height: parent.height