Update to 1.10.0-beta2
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
/* $Id$ */
|
||||
|
||||
/*
|
||||
* This file is part of OpenTTD.
|
||||
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
||||
@@ -1628,7 +1626,13 @@ public:
|
||||
if (id_v >= this->vehicles.size()) return; // click out of list bound
|
||||
|
||||
const Vehicle *v = this->vehicles[id_v];
|
||||
if (!VehicleClicked(v)) ShowVehicleViewWindow(v);
|
||||
if (!VehicleClicked(v)) {
|
||||
if (_ctrl_pressed) {
|
||||
ShowCompanyGroupForVehicle(v);
|
||||
} else {
|
||||
ShowVehicleViewWindow(v);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -2684,7 +2688,11 @@ public:
|
||||
}
|
||||
break;
|
||||
case WID_VV_SHOW_DETAILS: // show details
|
||||
ShowVehicleDetailsWindow(v);
|
||||
if (_ctrl_pressed) {
|
||||
ShowCompanyGroupForVehicle(v);
|
||||
} else {
|
||||
ShowVehicleDetailsWindow(v);
|
||||
}
|
||||
break;
|
||||
case WID_VV_CLONE: // clone vehicle
|
||||
/* Suppress the vehicle GUI when share-cloning.
|
||||
|
||||
Reference in New Issue
Block a user