diff options
author | rubidium <rubidium@openttd.org> | 2009-02-08 16:03:17 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-02-08 16:03:17 +0000 |
commit | d88f2a0120e38bb073a990ed4ae03ffb9e6058ea (patch) | |
tree | 9525247e5faa254459ae1dcb42bdbeaa679b077a /src/road_gui.cpp | |
parent | cba3be0b4f47beed4924953910cc39fd700a151a (diff) | |
download | openttd-d88f2a0120e38bb073a990ed4ae03ffb9e6058ea.tar.xz |
(svn r15415) -Change: close the (station) joiner window when pressing the bulldozer.
Diffstat (limited to 'src/road_gui.cpp')
-rw-r--r-- | src/road_gui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/road_gui.cpp b/src/road_gui.cpp index 6fd93cf8c..a1a8e0e62 100644 --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -368,6 +368,8 @@ static void BuildRoadClick_Tunnel(Window *w) static void BuildRoadClick_Remove(Window *w) { if (w->IsWidgetDisabled(RTW_REMOVE)) return; + + DeleteWindowById(WC_SELECT_STATION, 0); ToggleRoadButton_Remove(w); SndPlayFx(SND_15_BEEP); } |