Commit 1ce17f01 authored by Don Gagne's avatar Don Gagne

Merge pull request #3444 from DonLakeFlyer/ArmNoGPS

Allow arm with no GPS lock
parents 64cda494 81f83155
......@@ -446,7 +446,7 @@ Item {
QGCButton {
text: (_activeVehicle && _activeVehicle.armed) ? (_activeVehicle.flying ? qsTr("Emergency Stop") : qsTr("Disarm")) : qsTr("Arm")
visible: (_activeVehicle && _activeVehicle.coordinateValid)
visible: _activeVehicle
onClicked: _guidedModeBar.confirmAction(_activeVehicle.armed ? (_activeVehicle.flying ? _guidedModeBar.confirmEmergencyStop : _guidedModeBar.confirmDisarm) : _guidedModeBar.confirmArm)
}
......
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