diff options
author | 2021-01-11 09:59:43 -0800 | |
---|---|---|
committer | 2021-01-12 08:31:35 -0800 | |
commit | ee3482c109498033b07cc8a74a736153fbd783a8 (patch) | |
tree | 5e85fbee1ea50c93ce8f1f32fe98ee86391b32aa /mobile-widgets/qml/Settings.qml | |
parent | 2784f390a142676bcd9409af786d47e4aa4e6634 (diff) | |
download | subsurface-ee3482c109498033b07cc8a74a736153fbd783a8.tar.gz |
mobile/UI: small adjustments, using the slim combo box
This changes most readonly combo boxes to use the smaller, more modern
looking TemplateSlimComboBox and makes some layout adjustments on a few
pages to overall create a better UI.
A lot of this is just cleaning up things that were rather rough in the
first place.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/Settings.qml')
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 271577eae..3d28bec2a 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -81,7 +81,7 @@ TemplatePage { TemplateLabel { text: qsTr("Cylinder:") } - TemplateComboBox { + TemplateSlimComboBox { id: defaultCylinderBox Layout.fillWidth: true onActivated: { @@ -145,7 +145,7 @@ TemplatePage { Layout.bottomMargin: Kirigami.Units.largeSpacing / 2 Layout.columnSpan: 2 } - TemplateComboBox { + TemplateSlimComboBox { editable: false Layout.columnSpan: 2 currentIndex: (subsurfaceTheme.currentTheme === "Blue") ? 0 : |