qml: OptionsPopup: Allow mouse selection in combo boxes

This commit is contained in:
Tom Dewey 2024-09-18 15:15:19 +01:00 committed by Tom Dewey
parent d38f788587
commit 074f0a1bc0

View file

@ -306,6 +306,7 @@ Window {
} }
ComboBox { ComboBox {
id: fieldWifiCountry id: fieldWifiCountry
selectTextByMouse: true
enabled: chkWifi.checked enabled: chkWifi.checked
editable: true editable: true
} }
@ -327,6 +328,7 @@ Window {
} }
ComboBox { ComboBox {
enabled: chkLocale.checked enabled: chkLocale.checked
selectTextByMouse: true
id: fieldTimezone id: fieldTimezone
editable: true editable: true
Layout.minimumWidth: 200 Layout.minimumWidth: 200
@ -345,6 +347,7 @@ Window {
} }
ComboBox { ComboBox {
enabled: chkLocale.checked enabled: chkLocale.checked
selectTextByMouse: true
id: fieldKeyboardLayout id: fieldKeyboardLayout
editable: true editable: true
Layout.minimumWidth: 200 Layout.minimumWidth: 200