mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
0e4e8edf78
commit
6be5aba799
1 changed files with 9 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue