diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-03-15 10:50:50 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-03-15 10:50:50 +0100 |
commit | 8318b29b81d9a98fc5ad5fe1550f6d7a46ca7296 (patch) | |
tree | c79777e16054d261c1fcd2d5852fd19039c750fd /accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | |
parent | 98be2021274587a99bf7a30c114259f3ae8a65d1 (diff) | |
download | kube-8318b29b81d9a98fc5ad5fe1550f6d7a46ca7296.tar.gz kube-8318b29b81d9a98fc5ad5fe1550f6d7a46ca7296.zip |
Fixed loading of account names.
Diffstat (limited to 'accounts/maildir/package/contents/ui/MaildirAccountSettings.qml')
-rw-r--r-- | accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml index 3b2dbd35..174683c4 100644 --- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml +++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | |||
@@ -49,8 +49,8 @@ Rectangle { | |||
49 | id: name | 49 | id: name |
50 | placeholderText: accountName | 50 | placeholderText: accountName |
51 | Layout.fillWidth: true | 51 | Layout.fillWidth: true |
52 | text: accountSettings.name | 52 | text: accountSettings.accountName |
53 | onTextChanged: { accountSettings.name = text; } | 53 | onTextChanged: { accountSettings.accountName = text; } |
54 | } | 54 | } |
55 | 55 | ||
56 | Text { | 56 | Text { |
@@ -152,7 +152,7 @@ Rectangle { | |||
152 | KubeSettings.Settings { | 152 | KubeSettings.Settings { |
153 | id: accountSettings | 153 | id: accountSettings |
154 | identifier: "account." + accountId | 154 | identifier: "account." + accountId |
155 | property string name; | 155 | property string accountName; |
156 | property string icon: root.icon; | 156 | property string icon: root.icon; |
157 | } | 157 | } |
158 | 158 | ||