From 9e4741dbc9dc1d6b554a1b3739aabaf0bffe25f7 Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Mon, 10 Apr 2017 09:36:16 -0700 Subject: [PATCH] Select all when focused Strange IP indicators where a Qt 5.8 glitch --- src/QmlControls/QGCTextField.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/QGCTextField.qml b/src/QmlControls/QGCTextField.qml index 1c7902135..459a775bc 100644 --- a/src/QmlControls/QGCTextField.qml +++ b/src/QmlControls/QGCTextField.qml @@ -116,7 +116,7 @@ TextField { } onActiveFocusChanged: { - if (!ScreenTools.isMobile && activeFocus) { + if (activeFocus) { selectAll() } } -- 2.22.0