diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index ac65569fadf2bad965d7e31dc57b6dde2605f7dd..7decde57bd3d675a9e4b333576e56b4eb5c2f258 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 }