diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-22 12:54:18 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-24 20:20:41 -0800 |
commit | e22943fa21027917cd8d2de98cd13ae7d12d751a (patch) | |
tree | 3360f3205bacaaa7433a9209cb9310d97d411a89 /mobile-widgets/qml/Export.qml | |
parent | 20a1b4befb84b0dd88f4d0132dfa7de6faa7037e (diff) | |
download | subsurface-e22943fa21027917cd8d2de98cd13ae7d12d751a.tar.gz |
mobile-widgets/qml: use Kirigami Units instead of hardcoded values
This allows for better scaling of the UI.
Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/Export.qml')
-rw-r--r-- | mobile-widgets/qml/Export.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/Export.qml b/mobile-widgets/qml/Export.qml index 097893b60..5ef4c4ce7 100644 --- a/mobile-widgets/qml/Export.qml +++ b/mobile-widgets/qml/Export.qml @@ -34,8 +34,8 @@ Kirigami.ScrollablePage { standardButtons: StandardButton.Apply | StandardButton.Cancel GridLayout { - rowSpacing: 10 - columnSpacing: 10 + rowSpacing: Kirigami.Units.smallSpacing * 2 + columnSpacing: Kirigami.Units.smallSpacing columns: 2 Text { |