diff options
author | frosch <frosch@openttd.org> | 2008-11-29 21:27:15 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-11-29 21:27:15 +0000 |
commit | a0327b375fe024f0c064c6ca7cdeeb1251daf5c0 (patch) | |
tree | 1016aef0dd82d798d74af20dd4cd4c0385d90b18 /src/group_cmd.cpp | |
parent | 0191220b64d78021af44362ed66cbe7f1a4d2206 (diff) | |
download | openttd-a0327b375fe024f0c064c6ca7cdeeb1251daf5c0.tar.xz |
(svn r14643) -Fix: Invalidate autoreplace window when toggling 'replace protection'.
Diffstat (limited to 'src/group_cmd.cpp')
-rw-r--r-- | src/group_cmd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/group_cmd.cpp b/src/group_cmd.cpp index 46ab84b2b..3af23a041 100644 --- a/src/group_cmd.cpp +++ b/src/group_cmd.cpp @@ -335,6 +335,7 @@ CommandCost CmdSetGroupReplaceProtection(TileIndex tile, uint32 flags, uint32 p1 g->replace_protection = HasBit(p2, 0); InvalidateWindowData(GetWindowClassForVehicleType(g->vehicle_type), (g->vehicle_type << 11) | VLW_GROUP_LIST | _current_company); + InvalidateWindowData(WC_REPLACE_VEHICLE, g->vehicle_type); } return CommandCost(); |