diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-05 20:05:41 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-05 20:05:41 +0100 |
commit | 03384190b71f91121593a4f04027042f3cf68f9f (patch) | |
tree | 503fb43dc9b4cab8836bec09793b7332ec34f648 /components/accounts | |
parent | 7726fc6e03c09a5a1cb2dad62bd9ed6438e8bd8b (diff) | |
download | kube-03384190b71f91121593a4f04027042f3cf68f9f.tar.gz kube-03384190b71f91121593a4f04027042f3cf68f9f.zip |
link account name to composer
Diffstat (limited to 'components/accounts')
-rw-r--r-- | components/accounts/CreateKolabNow.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/accounts/CreateKolabNow.qml b/components/accounts/CreateKolabNow.qml index c362bef6..fbcb5fd7 100644 --- a/components/accounts/CreateKolabNow.qml +++ b/components/accounts/CreateKolabNow.qml | |||
@@ -93,6 +93,12 @@ Item { | |||
93 | Layout.fillWidth: true | 93 | Layout.fillWidth: true |
94 | 94 | ||
95 | placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" | 95 | placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" |
96 | |||
97 | text: account.name | ||
98 | |||
99 | onTextChanged: { | ||
100 | account.name = text | ||
101 | } | ||
96 | } | 102 | } |
97 | 103 | ||
98 | Controls.Label { | 104 | Controls.Label { |