summaryrefslogtreecommitdiff
path: root/src/town_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-09-05 11:27:28 +0000
committeralberth <alberth@openttd.org>2009-09-05 11:27:28 +0000
commit9fd22f727f813fc72fd4d2022ca3b8d517bf23eb (patch)
treef80aca71c5166ef147b1e4605df9c7c4ae5b9b90 /src/town_gui.cpp
parent8bac3af04991c5bdee37f1c5d30f30380c3c5fa8 (diff)
downloadopenttd-9fd22f727f813fc72fd4d2022ca3b8d517bf23eb.tar.xz
(svn r17423) -Fix [FS#3174]: Show '- None -' with empty town or industry list, and use that text in the size computation as well.
Diffstat (limited to 'src/town_gui.cpp')
-rw-r--r--src/town_gui.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 1a090f10e..74e5bc4a6 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -635,6 +635,11 @@ public:
case TDW_CENTERTOWN: {
int n = 0;
int y = r.top + WD_FRAMERECT_TOP;
+ if (this->towns.Length() == 0) { // No towns available.
+ DrawString(r.left + WD_FRAMERECT_LEFT, r.right, y, STR_TOWN_DIRECTORY_NONE);
+ break;
+ }
+ /* At least one town available. */
for (uint i = this->vscroll.GetPosition(); i < this->towns.Length(); i++) {
const Town *t = this->towns[i];
@@ -663,7 +668,7 @@ public:
break;
}
case TDW_CENTERTOWN: {
- Dimension d = {0, 0};
+ Dimension d = GetStringBoundingBox(STR_TOWN_DIRECTORY_NONE);
for (uint i = 0; i < this->towns.Length(); i++) {
const Town *t = this->towns[i];