diff options
author | rubidium <rubidium@openttd.org> | 2009-03-24 20:23:47 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-24 20:23:47 +0000 |
commit | 8cba245791bbdb30cd5e33253cc439bbc540c5be (patch) | |
tree | ccdc4b17a308142ad6aebd89ffe223af4c93b96e /src | |
parent | 84fb615344af1d998ae607aea7801d74a3b90e4e (diff) | |
download | openttd-8cba245791bbdb30cd5e33253cc439bbc540c5be.tar.xz |
(svn r15836) -Fix [FS#2762]: acceptance not shown in the station window (swapping top and bottom isn't a great idea)
Diffstat (limited to 'src')
-rw-r--r-- | src/station_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 9028d3ec6..63163a126 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -864,7 +864,7 @@ struct StationViewWindow : public Window { assert(b < endof(string)); SetDParamStr(0, string); - DrawStringMultiLine(this->widget[SVW_ACCEPTLIST].left + 2, this->widget[SVW_ACCEPTLIST].right - 2, this->widget[SVW_ACCEPTLIST].bottom - 1, this->widget[SVW_ACCEPTLIST].top + 1, STR_JUST_RAW_STRING); + DrawStringMultiLine(this->widget[SVW_ACCEPTLIST].left + 2, this->widget[SVW_ACCEPTLIST].right - 2, this->widget[SVW_ACCEPTLIST].top + 1,this->widget[SVW_ACCEPTLIST].bottom - 1, STR_JUST_RAW_STRING); } else { // extended window with list of cargo ratings y = this->widget[SVW_RATINGLIST].top + 1; |