summaryrefslogtreecommitdiff
path: root/src/town_gui.cpp
diff options
context:
space:
mode:
authorplanetmaker <planetmaker@openttd.org>2010-10-19 21:48:20 +0000
committerplanetmaker <planetmaker@openttd.org>2010-10-19 21:48:20 +0000
commitc2a7b82a9f58511638883fedca21dad1e5bf4ab9 (patch)
tree06a38b71e21fb1d3dce1322cf15f39c25d1f6fe8 /src/town_gui.cpp
parent9373ee71d999a08c51938f6214fc0360c477992a (diff)
downloadopenttd-c2a7b82a9f58511638883fedca21dad1e5bf4ab9.tar.xz
(svn r20997) -Fix: Size of sort buttons for order and vehicle list gui could be too small
Diffstat (limited to 'src/town_gui.cpp')
-rw-r--r--src/town_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 5978d2bbe..1cd7c3193 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -784,7 +784,7 @@ public:
case TDW_SORTNAME:
case TDW_SORTPOPULATION: {
Dimension d = GetStringBoundingBox(this->GetWidget<NWidgetCore>(widget)->widget_data);
- d.width += padding.width + WD_SORTBUTTON_ARROW_WIDTH * 2; // Doubled since the word is centered, also looks nice.
+ d.width += padding.width + WD_SORTBUTTON_ARROW_WIDTH * 2; // Doubled since the string is centred and it also looks better.
d.height += padding.height;
*size = maxdim(*size, d);
break;