summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorstormcone <48624099+stormcone@users.noreply.github.com>2019-05-10 19:49:50 +0200
committerCharles Pigott <charlespigott@googlemail.com>2019-12-23 18:04:10 +0000
commitcc1d72c3a370f3c9a13e8722f8d69f5735b95285 (patch)
treea0ed6ff8fbd7f8d4e537d1f20dc7409a2336b483 /src/vehicle_gui.cpp
parenta363933d0899f6e79bf04eb38097ce1170f02bee (diff)
downloadopenttd-cc1d72c3a370f3c9a13e8722f8d69f5735b95285.tar.xz
Feature: Control + click on the vehicle details button in the vehicle view window opens the vehicle group window, then selects and scrolls to the vehicle's group.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 04d240b04..6272459bc 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -2698,7 +2698,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.