diff --git a/src/QmlControls/ParameterEditorDialog.qml b/src/QmlControls/ParameterEditorDialog.qml index 0083f2a83b71c6e814b98cc62a3b7a8679c3641d..3a1f5e436ab24f1d89eb8ed53022952a2023b3de 100644 --- a/src/QmlControls/ParameterEditorDialog.qml +++ b/src/QmlControls/ParameterEditorDialog.qml @@ -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