From fb394e516e56214476dd85a1b9294ba0722adbea Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Wed, 25 Dec 2019 09:48:50 -0800 Subject: [PATCH] Warning text update --- src/PlanView/FWLandingPatternEditor.qml | 39 ++++++++++++++++++++----- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/src/PlanView/FWLandingPatternEditor.qml b/src/PlanView/FWLandingPatternEditor.qml index b8f68c1e4..a2701b948 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.") + } } } -- 2.22.0