diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/settings.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index 1834fe72d..964631f5d 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -809,6 +809,11 @@ static bool TrainAccelerationModelChanged(int32 p1) } } + /* These windows show acceleration values only when realistic acceleration is on. They must be redrawn after a setting change. */ + SetWindowClassesDirty(WC_ENGINE_PREVIEW); + InvalidateWindowClassesData(WC_BUILD_VEHICLE, 0); + SetWindowClassesDirty(WC_VEHICLE_DETAILS); + return true; } |