diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-07-07 11:48:06 +0100 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-07-07 12:02:45 +0100 |
commit | 7953c7529b811f8c06f0fc74f0c5b5f5f000f1ae (patch) | |
tree | fd01b72baf58b2fb965f516d08ae1083477feb30 | |
parent | 79c43f735fedc45fae6c5d72ade70f0012cef530 (diff) |
Fix spacing of settings page to comply with new asteroid controls
-rw-r--r-- | src/SettingsPage.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/SettingsPage.qml b/src/SettingsPage.qml index d556a11..e797459 100644 --- a/src/SettingsPage.qml +++ b/src/SettingsPage.qml @@ -27,8 +27,6 @@ Item { Flickable { anchors.fill: parent contentHeight: contentColumn.implicitHeight - anchors.leftMargin: root.width*0.15 - anchors.rightMargin: root.width*0.15 Column { id: contentColumn anchors.fill: parent @@ -49,7 +47,8 @@ Item { } Item { width: parent.width ; height: root.width*0.2 } Column { - width: parent.width + width: parent.width*0.7 + anchors.horizontalCenter: parent.horizontalCenter Label { text: "Map Data © OpenStreetMap contributors" width: parent.width |