diff options
author | rubidium <rubidium@openttd.org> | 2007-04-29 07:24:48 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-04-29 07:24:48 +0000 |
commit | 55a4e4f756de8864f0ca912d0b5de8f8f83432ae (patch) | |
tree | b074e128f9134b2bb2bf42f41bfcd2f8770f561b | |
parent | 948ef6dc1b123c921bdd9fdbed768275e2c1f6dd (diff) | |
download | openttd-55a4e4f756de8864f0ca912d0b5de8f8f83432ae.tar.xz |
(svn r9741) -Fix [FS#672]: station signs were not resized when the language changed, causing overflows in the coloured sign background.
-rw-r--r-- | src/settings_gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index 5ac040c2b..cecc0176e 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -203,6 +203,7 @@ static void GameOptionsWndProc(Window *w, WindowEvent *e) break; case 24: /* Change interface language */ ReadLanguagePack(e->we.dropdown.index); + UpdateAllStationVirtCoord(); MarkWholeScreenDirty(); break; case 27: /* Change resolution */ |