From 4a4ecf1840a4cc262666632ad6ef06522e1231f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Tue, 18 Jul 2017 10:24:27 -0300 Subject: [PATCH] Survey: Move entry point to mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move entry point in survey pattern to mobile With wind rose, this feature don't make sense Signed-off-by: Patrick José Pereira --- src/PlanView/SurveyItemEditor.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index ac65569fa..7decde57b 100644 --- a/src/PlanView/SurveyItemEditor.qml +++ b/src/PlanView/SurveyItemEditor.qml @@ -463,9 +463,13 @@ Rectangle { Layout.fillWidth: true } - QGCLabel { text: qsTr("Entry") } + QGCLabel { + text: qsTr("Entry") + visible: ScreenTools.isMobile + } FactComboBox { fact: missionItem.gridEntryLocation + visible: ScreenTools.isMobile indexModel: false Layout.fillWidth: true } @@ -574,9 +578,13 @@ Rectangle { fact: missionItem.turnaroundDist Layout.fillWidth: true } - QGCLabel { text: qsTr("Entry") } + QGCLabel { + text: qsTr("Entry") + visible: ScreenTools.isMobile + } FactComboBox { fact: missionItem.gridEntryLocation + visible: ScreenTools.isMobile indexModel: false Layout.fillWidth: true } -- GitLab