Commit 19f7306b authored by DonLakeFlyer's avatar DonLakeFlyer

Fix alignment

parent 129bea66
......@@ -77,17 +77,25 @@ Rectangle {
Item { width: 1; height: _spacer }
FactTextFieldGrid {
anchors.left: parent.left
anchors.right: parent.right
factList: [ missionItem.landingHeading, missionItem.landingAltitude]
}
GridLayout {
anchors.left: parent.left
anchors.right: parent.right
columns: 2
QGCLabel { text: missionItem.landingHeading.name }
FactTextField {
Layout.fillWidth: true
fact: missionItem.landingHeading
}
QGCLabel { text: missionItem.landingAltitude.name }
FactTextField {
Layout.fillWidth: true
fact: missionItem.landingAltitude
}
QGCRadioButton {
id: useLandingDistance
text: missionItem.landingDistance.name
......
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