summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2006-09-05 16:40:23 +0000
committerglx <glx@openttd.org>2006-09-05 16:40:23 +0000
commitec6189081dc0cf7931fddd2fb1d5a32b86b4b9e4 (patch)
tree45dd58459fce99a444dcbfe6d4ba4c0bf94ac317 /train_cmd.c
parent85a71fcea96bc48b59e9784368214c3fd3089706 (diff)
downloadopenttd-ec6189081dc0cf7931fddd2fb1d5a32b86b4b9e4.tar.xz
(svn r6395) -Fix: when converting a depot from/to elrail, update the power of trains that are in it
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/train_cmd.c b/train_cmd.c
index 70ba47499..7780faf52 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -113,6 +113,7 @@ void TrainPowerChanged(Vehicle* v)
if (v->u.rail.cached_power != power) {
v->u.rail.cached_power = power;
InvalidateWindow(WC_VEHICLE_DETAILS, v->index);
+ InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);
}
}