From c8ba8d930b8d0faf522315e2afc2e4d604060b5e Mon Sep 17 00:00:00 2001 From: smatz Date: Sun, 27 Jan 2008 20:20:53 +0000 Subject: (svn r11996) -Fix [FS#1706]: update train statusbar when stopping from zero speed --- src/train_cmd.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index 1308d5757..891642070 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -3523,6 +3523,12 @@ static void TrainLocoHandler(Vehicle *v, bool mode) if (!mode) HandleLocomotiveSmokeCloud(v); int j = UpdateTrainSpeed(v); + + /* we need to invalidate the widget if we are stopping from 'Stopping 0 km/h' to 'Stopped' */ + if (v->cur_speed == 0 && v->u.rail.last_speed == 0 && v->vehstatus & VS_STOPPED) { + InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, VVW_WIDGET_START_STOP_VEH); + } + if (j == 0) { /* if the vehicle has speed 0, update the last_speed field. */ if (v->cur_speed != 0) return; -- cgit v1.2.3-54-g00ecf