diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-01-18 23:19:25 +0000 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-01-18 23:23:23 +0000 |
commit | e59aab334066561d9193410414a6c43f4c90eabd (patch) | |
tree | 2ef4a44d8fe84e72860104c1fc40771cea1a6c91 /src | |
parent | 9de6b9bf4ae91517e293f7fb02df19d26da97516 (diff) |
settingspage: fix clipping of license text
Diffstat (limited to 'src')
-rw-r--r-- | src/SettingsPage.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/SettingsPage.qml b/src/SettingsPage.qml index 920dc0a..763f9b1 100644 --- a/src/SettingsPage.qml +++ b/src/SettingsPage.qml @@ -44,13 +44,12 @@ Item { width: parent.width - parent.height Label { text: "Map Data © OpenStreetMap contributors" - height: parent.height*0.5 width: parent.width font.pixelSize: root.width*0.05 + wrapMode: Text.Wrap } Label { text: "under the ODbL" - height: parent.height*0.5 width: parent.width font.pixelSize: root.width*0.05 } |