Commit 472ee139 authored by Don Gagne's avatar Don Gagne

Merge pull request #3188 from DonLakeFlyer/NoAirframeMessage

Better messaging for no airframe set
parents d225aa6a d8b5c670
...@@ -126,9 +126,10 @@ QGCView { ...@@ -126,9 +126,10 @@ QGCView {
QGCLabel { QGCLabel {
id: helpText id: helpText
width: parent.width - applyButton.width - 5 width: parent.width - applyButton.width - 5
text: "You've connected a " + text: (controller.currentVehicleName != "" ?
controller.currentVehicleName + "You've connected a " + controller.currentVehicleName :
". If you’d like to change this configuration, select the desired airframe below then click “Apply and Restart”." "Airframe is not set") +
". To change this configuration, select the desired airframe below then click “Apply and Restart”."
font.weight: Font.DemiBold font.weight: Font.DemiBold
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
} }
......
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