diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 12:30:41 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 12:30:41 +0700 |
commit | 58cb6d29e7307909ad8e69c9bc1858eb1002ed07 (patch) | |
tree | b0ffe6d1246a9bad9dc21ced328e28c81e74a328 | |
parent | f8486f1a9d472524307721e9d5e62f4096beb083 (diff) |
fixed misconfiguration of checkbox id
-rw-r--r-- | SignUpFlickable.ui.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SignUpFlickable.ui.qml b/SignUpFlickable.ui.qml index 494cd23..036c54f 100644 --- a/SignUpFlickable.ui.qml +++ b/SignUpFlickable.ui.qml @@ -149,9 +149,9 @@ GridLayout { Layout.fillWidth: true contentItem: Text { color: "#6c757d" - text: rememberCheckBox.text + text: agreementCheckBox.text verticalAlignment: Text.AlignVCenter - leftPadding: rememberCheckBox.indicator.width + rememberCheckBox.spacing + leftPadding: agreementCheckBox.indicator.width + agreementCheckBox.spacing } } } |