diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-01-07 17:33:21 +0000 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-01-07 17:36:35 +0000 |
commit | c098c2d21c6013b0b8d418a56b8aa942007db52b (patch) | |
tree | 2ecfd3522fb6426d950e180a01c9f53edc9ff58e /src | |
parent | eb1b5982def21f758710b133ceb283e197f5de49 (diff) |
Fix element sizes in settings menu
Diffstat (limited to 'src')
-rw-r--r-- | src/SettingsPage.qml | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/SettingsPage.qml b/src/SettingsPage.qml index c7f21cd..f196d92 100644 --- a/src/SettingsPage.qml +++ b/src/SettingsPage.qml @@ -16,37 +16,34 @@ Item { Column { id: contentColumn anchors.fill: parent - Item { - height: root.height*0.1 - width: parent.width - } + Item { width: parent.width ; height: root.width*0.2 } LabeledSwitch { width: parent.width - height: width*0.2 + height: root.width*0.2 text: "show zoom controls" } LabeledSwitch { width: parent.width - height: width*0.2 + height: root.width*0.2 text: "center on GPS" } LabeledSwitch { width: parent.width - height: width*0.2 + height: root.width*0.2 text: "enable compass" Component.onCompleted: checked = enableCompass.value onCheckedChanged: enableCompass.value = checked } LabeledSwitch { width: parent.width - height: width*0.2 + height: root.width*0.2 text: "enable GPS" Component.onCompleted: checked = prioritiseGPS.value onCheckedChanged: prioritiseGPS.value = checked } Row { width: parent.width - height: width*0.2 + height: root.width*0.2 // Icon { // name: "ios-information-circle-outline" // height: parent.height @@ -69,6 +66,7 @@ Item { } } } + Item { width: parent.width ; height: root.width*0.2 } } } } |