Commit 5505a66e authored by Don Gagne's avatar Don Gagne

Don't change active vehicle for additional vehicles

parent d1cc23a2
......@@ -109,7 +109,11 @@ void MultiVehicleManager::_vehicleHeartbeatInfo(LinkInterface* link, int vehicle
emit vehicleAdded(vehicle);
setActiveVehicle(vehicle);
if (_vehicles.count() > 1) {
qgcApp()->showMessage(tr("Connected to Vehicle %1").arg(vehicleId));
} else {
setActiveVehicle(vehicle);
}
// Mark link as active
link->setActive(true);
......
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