Commit 9dde411a authored by DonLakeFlyer's avatar DonLakeFlyer

parent 760e95ac
...@@ -66,17 +66,14 @@ Rectangle { ...@@ -66,17 +66,14 @@ Rectangle {
visible: missionItem.isTakeoffItem && missionItem.wizardMode // Hack special case for takeoff item visible: missionItem.isTakeoffItem && missionItem.wizardMode // Hack special case for takeoff item
QGCLabel { QGCLabel {
id: initialClickLabel text: qsTr("Move 'T' Takeoff to the climbout location.")
text: missionItem.launchTakeoffAtSameLocation ?
qsTr("Click in map to set Takeoff location.") :
qsTr("Click in map to set Launch location.")
Layout.fillWidth: true Layout.fillWidth: true
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
visible: missionItem.isTakeoffItem && !missionItem.launchCoordinate.isValid visible: !initialClickLabel.visible
} }
QGCLabel { 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 Layout.fillWidth: true
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
visible: !initialClickLabel.visible visible: !initialClickLabel.visible
...@@ -91,6 +88,16 @@ Rectangle { ...@@ -91,6 +88,16 @@ Rectangle {
editorRoot.selectNextNotReadyItem() 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 { Column {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment