summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'accounts')
-rw-r--r--accounts/maildir/package/contents/ui/MaildirAccountSettings.qml6
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