Commit 5c19516e authored by Don Gagne's avatar Don Gagne

Fix checkbox alignment

parent d535a632
......@@ -162,10 +162,11 @@ Item {
spacing: ScreenTools.defaultFontPixelWidth
QGCCheckBox {
id: followVehicleCheckBox
text: qsTr("Follow Vehicle")
checked: _flightMap ? _flightMap._followVehicle : false
anchors.baseline: centerMapButton.baseline
id: followVehicleCheckBox
text: qsTr("Follow Vehicle")
checked: _flightMap ? _flightMap._followVehicle : false
anchors.verticalCenter: parent.verticalCenter
//anchors.baseline: centerMapButton.baseline - This doesn't work correctly on mobile for some strange reason, so we center instead
onClicked: {
_dropButtonsExclusiveGroup.current = null
......
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