diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2016-05-16 19:59:06 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-05-16 11:06:24 -0700 |
commit | 6be5aba7990ec53b104ddbd57256c2eedf91f8c4 (patch) | |
tree | 2f98061dca8dc333991bce8617f495491d6eef0f /mobile-widgets | |
parent | 0e4e8edf78999fa6e9e1052c9022661949b9d00b (diff) | |
download | subsurface-6be5aba7990ec53b104ddbd57256c2eedf91f8c4.tar.gz |
QML UI: hide handles for comboboxes
Hide the handles for the comboboxes, making the text input fields
look like the normal text fields.
This is left as a separate patch as there currently seems to be issues with autocomplete
on Android.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index 9986d234f..5b582d11e 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -160,6 +160,9 @@ Item { model: diveDetailsListView.currentItem.modelData.dive.suitList inputMethodHints: Qt.ImhNoPredictiveText Layout.fillWidth: true + style: ComboBoxStyle { + dropDownButtonWidth: 0 + } } Kirigami.Label { @@ -172,6 +175,9 @@ Item { model: diveDetailsListView.currentItem.modelData.dive.buddyList inputMethodHints: Qt.ImhNoPredictiveText Layout.fillWidth: true + style: ComboBoxStyle { + dropDownButtonWidth: 0 + } } Kirigami.Label { @@ -184,6 +190,9 @@ Item { model: diveDetailsListView.currentItem.modelData.dive.divemasterList inputMethodHints: Qt.ImhNoPredictiveText Layout.fillWidth: true + style: ComboBoxStyle { + dropDownButtonWidth: 0 + } } Kirigami.Label { |