From 9dde411aaf94dbefe099c23ad78d27085348a975 Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Sun, 17 Nov 2019 16:04:18 -0800 Subject: [PATCH] Better wordings for Takeoff item --- src/PlanView/SimpleItemEditor.qml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/PlanView/SimpleItemEditor.qml b/src/PlanView/SimpleItemEditor.qml index d904ffd4d..2acb7ddff 100644 --- a/src/PlanView/SimpleItemEditor.qml +++ b/src/PlanView/SimpleItemEditor.qml @@ -66,17 +66,14 @@ Rectangle { visible: missionItem.isTakeoffItem && missionItem.wizardMode // Hack special case for takeoff item QGCLabel { - id: initialClickLabel - text: missionItem.launchTakeoffAtSameLocation ? - qsTr("Click in map to set Takeoff location.") : - qsTr("Click in map to set Launch location.") + text: qsTr("Move 'T' Takeoff to the climbout location.") Layout.fillWidth: true wrapMode: Text.WordWrap - visible: missionItem.isTakeoffItem && !missionItem.launchCoordinate.isValid + visible: !initialClickLabel.visible } QGCLabel { - text: qsTr("Adjust the takeoff completion location by dragging 'T' indicator to the desired location.") + text: qsTr("Ensure clear of obstacles and into the wind.") Layout.fillWidth: true wrapMode: Text.WordWrap visible: !initialClickLabel.visible @@ -91,6 +88,16 @@ Rectangle { editorRoot.selectNextNotReadyItem() } } + + QGCLabel { + id: initialClickLabel + text: missionItem.launchTakeoffAtSameLocation ? + qsTr("Click in map to set planned Takeoff location.") : + qsTr("Click in map to set planned Launch location.") + Layout.fillWidth: true + wrapMode: Text.WordWrap + visible: missionItem.isTakeoffItem && !missionItem.launchCoordinate.isValid + } } Column { -- 2.22.0