diff --git a/src/PlanView/FWLandingPatternEditor.qml b/src/PlanView/FWLandingPatternEditor.qml index b8f68c1e4c1e779dfc9b7e8212f8a115fbbdb72d..a2701b94874b6578d11e97851e14878a4791411d 100644 --- a/src/PlanView/FWLandingPatternEditor.qml +++ b/src/PlanView/FWLandingPatternEditor.qml @@ -215,14 +215,37 @@ Rectangle { } } - QGCLabel { - anchors.left: parent.left - anchors.right: parent.right - wrapMode: Text.WordWrap - color: qgcPal.warningText - font.pointSize: ScreenTools.smallFontPointSize - horizontalAlignment: Text.AlignHCenter - text: qsTr("* Approximate glide slope altitudes. Actual flight path will vary.") + Column { + anchors.left: parent.left + anchors.right: parent.right + spacing: 0 + + QGCLabel { + anchors.left: parent.left + anchors.right: parent.right + wrapMode: Text.WordWrap + color: qgcPal.warningText + font.pointSize: ScreenTools.smallFontPointSize + text: qsTr("* Approximate glide slope altitudes.") + } + + QGCLabel { + anchors.left: parent.left + anchors.right: parent.right + wrapMode: Text.WordWrap + color: qgcPal.warningText + font.pointSize: ScreenTools.smallFontPointSize + text: qsTr("* Actual flight path will vary.") + } + + QGCLabel { + anchors.left: parent.left + anchors.right: parent.right + wrapMode: Text.WordWrap + color: qgcPal.warningText + font.pointSize: ScreenTools.smallFontPointSize + text: qsTr("* Avoid tailwind on landing.") + } } }