summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-02-23 20:54:55 +0000
committerfrosch <frosch@openttd.org>2011-02-23 20:54:55 +0000
commit19b7249adee1dba623ba4ee69266cd13888deb3d (patch)
tree4f399e2587ff32b008c60b8f6211e1f7021f5210 /src/vehicle.cpp
parent40cc3324fadce60522e97791604ae3a6643f4c2e (diff)
downloadopenttd-19b7249adee1dba623ba4ee69266cd13888deb3d.tar.xz
(svn r22135) -Fix [FS#4523]: When commands need to invalidate windows, process these events asynchronously before the next redraw. Calling window code directly from command scope uses wrong _current_company and might issue nested DoCommands() which interfer with the running command.
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index e3ffbbc91..f1dd8a7cd 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -2270,7 +2270,7 @@ void Vehicle::RemoveFromShared()
} else if (were_first) {
/* If we were the first one, update to the new first one.
* Note: FirstShared() is already the new first */
- InvalidateWindowData(GetWindowClassForVehicleType(this->type), vli.Pack(), this->FirstShared()->index | (1U << 31));
+ InvalidateWindowData(GetWindowClassForVehicleType(this->type), vli.Pack(), this->FirstShared()->index | (1U << 31), true);
}
this->next_shared = NULL;