From c098c2d21c6013b0b8d418a56b8aa942007db52b Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Sat, 7 Jan 2023 17:33:21 +0000 Subject: Fix element sizes in settings menu --- src/SettingsPage.qml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'src') 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 } } } } -- cgit v1.2.3-54-g00ecf