Commit 736947a2 authored by DonLakeFlyer's avatar DonLakeFlyer

Always show armed indicator

parent 82a703a8
......@@ -26,11 +26,8 @@ QGCLabel {
text: _armed ? qsTr("Armed") : qsTr("Disarmed")
font.pointSize: ScreenTools.mediumFontPointSize
color: qgcPal.buttonText
visible: !_autoDisarm || _fixedWing
property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
property bool _autoDisarm: _activeVehicle ? _activeVehicle.autoDisarm : false
property bool _fixedWing: _activeVehicle ? _activeVehicle.fixedWing : false
property bool _armed: _activeVehicle ? _activeVehicle.armed : false
QGCPalette { id: qgcPal }
......
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