summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-10-08 11:46:36 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-10-08 11:46:36 +0200
commit10394dc130f8117b54e0590f41aadff3ee1f9332 (patch)
tree53881dc3f2daa6e782e0af71786f0445d453625c /accounts
parent7008aee88ef522af0277ca37667583e61d8fa445 (diff)
downloadkube-10394dc130f8117b54e0590f41aadff3ee1f9332.tar.gz
kube-10394dc130f8117b54e0590f41aadff3ee1f9332.zip
Support reentering the password from the settings
Additionally this fixes the loader sizing to use the implicit size. This means all settings pages need to set an implicit height.
Diffstat (limited to 'accounts')
-rw-r--r--accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
index 7468669c..01dd3db6 100644
--- a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
+++ b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
@@ -27,6 +27,7 @@ Item {
27 property string heading: qsTr("Connect your Kolab Now account") 27 property string heading: qsTr("Connect your Kolab Now account")
28 property string subheadline: qsTr("Please fill in your name and email address.") 28 property string subheadline: qsTr("Please fill in your name and email address.")
29 property bool valid: nameField.acceptableInput && emailField.acceptableInput 29 property bool valid: nameField.acceptableInput && emailField.acceptableInput
30 implicitHeight: grid.implicitHeight
30 31
31 KolabnowAccount.KolabnowSettings { 32 KolabnowAccount.KolabnowSettings {
32 id: kolabnowSettings 33 id: kolabnowSettings
@@ -43,9 +44,8 @@ Item {
43 } 44 }
44 45
45 GridLayout { 46 GridLayout {
46 anchors { 47 id: grid
47 fill: parent 48 anchors.fill: parent
48 }
49 columns: 2 49 columns: 2
50 columnSpacing: Kube.Units.largeSpacing 50 columnSpacing: Kube.Units.largeSpacing
51 rowSpacing: Kube.Units.largeSpacing 51 rowSpacing: Kube.Units.largeSpacing