Unverified Commit d3042e22 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8542 from DonLakeFlyer/ADSBNote

Add note about ADSB server settings
parents 740bd1ae 276fb1cf
......@@ -890,16 +890,27 @@ Rectangle {
visible: QGroundControl.settingsManager.adsbVehicleManagerSettings.visible
}
Rectangle {
Layout.preferredHeight: adsbGrid.height + (_margins * 2)
Layout.preferredHeight: adsbGrid.y + adsbGrid.height + _margins
Layout.preferredWidth: adsbGrid.width + (_margins * 2)
color: qgcPal.windowShade
visible: adsbSectionLabel.visible
Layout.fillWidth: true
QGCLabel {
id: warningLabel
anchors.margins: _margins
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
font.pointSize: ScreenTools.smallFontPointSize
wrapMode: Text.WordWrap
text: qsTr("Note: These setting are not meant for use with an ADSB transponder which is situated on the vehicle.")
}
GridLayout {
id: adsbGrid
anchors.topMargin: _margins
anchors.top: parent.top
anchors.top: warningLabel.bottom
Layout.fillWidth: true
anchors.horizontalCenter: parent.horizontalCenter
columns: 2
......
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