diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-15 14:50:07 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-19 11:51:19 -0800 |
commit | ee1d5ba94e18b035298ea36c54f2bb35a3e67e0f (patch) | |
tree | a5c71b32db311343d780d2514c273bd16cab753d /mobile-widgets | |
parent | 2ce32277db9e8242a2cb3a79fdc8c59dd4104a00 (diff) | |
download | subsurface-ee1d5ba94e18b035298ea36c54f2bb35a3e67e0f.tar.gz |
mobile-widgets/qml: settings Control.comboBox -> TemplateComboBox
Replace Control.ComboBox with TemplateComboBox, in order to use
common font/color scheme.
Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 24d10962c..7565a45bf 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -356,9 +356,8 @@ Kirigami.ScrollablePage { TemplateLabel { text: qsTr("Cylinder:") } - Controls.ComboBox { + TemplateComboBox { id: defaultCylinderBox - font.pointSize: subsurfaceTheme.regularPointSize Layout.preferredHeight: fontMetrics.height * 2.5 inputMethodHints: Qt.ImhNoPredictiveText Layout.fillWidth: true |