Commit a390d5cf authored by Jacob Walser's avatar Jacob Walser

Set flying flag regardless of armed status

parent cbdc5cd4
......@@ -2013,7 +2013,7 @@ void Vehicle::_announceArmedChanged(bool armed)
void Vehicle::_setFlying(bool flying)
{
if (armed() && _flying != flying) {
if (_flying != flying) {
_flying = flying;
emit flyingChanged(flying);
}
......
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