Commit b9b1f1ef authored by Beat Küng's avatar Beat Küng

ParameterEditorDialog: disable setting focus on mobile

mobile needs more testing before we can enable this.
A test on an android phone was successful however.
parent b09904d8
......@@ -88,7 +88,7 @@ QGCViewDialog {
// set focus to the text field when becoming visible (in case of an Enum,
// the valueField is not visible, but it's not an issue because the combo
// box cannot have a focus)
onVisibleChanged: if (visible) valueField.forceActiveFocus()
onVisibleChanged: if (visible && !ScreenTools.isMobile) valueField.forceActiveFocus()
QGCFlickable {
anchors.fill: parent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment