diff options
author | link2xt <link2xt@testrun.org> | 2021-03-27 18:34:35 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-27 18:34:35 +0300 |
commit | ce560074d446c196aa87cca92237d5bea80f38ef (patch) | |
tree | 603c9502c73fd23bc6bebaabbd6921b4d6494b41 | |
parent | 1c0b819e52dae246698af581b3c89b400de549e8 (diff) | |
download | kdeltachat-ce560074d446c196aa87cca92237d5bea80f38ef.tar.gz kdeltachat-ce560074d446c196aa87cca92237d5bea80f38ef.zip |
Use FormLayout for Configure page
-rw-r--r-- | qml/ConfigurePage.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qml/ConfigurePage.qml b/qml/ConfigurePage.qml index 9fc229a..8a5d9d3 100644 --- a/qml/ConfigurePage.qml +++ b/qml/ConfigurePage.qml @@ -13,18 +13,19 @@ Kirigami.Page { required property DcContext context required property DcAccountsEventEmitter eventEmitter - ColumnLayout { + Kirigami.FormLayout { anchors.fill: parent TextField { id: addressField - placeholderText: "Address" + Kirigami.FormData.label: "Address: " } TextField { id: passwordField - placeholderText: "Password" + Kirigami.FormData.label: "Password: " + echoMode: TextInput.PasswordEchoOnEdit } ProgressBar { |