summaryrefslogtreecommitdiff
path: root/src/signs_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-08-18 19:30:25 +0000
committerfrosch <frosch@openttd.org>2013-08-18 19:30:25 +0000
commitf89375aa44959efe4a8a098a13ac7f66897faaa2 (patch)
tree4b95a01ec1c341419305368dccb9f36668bcd748 /src/signs_gui.cpp
parentfe4aa47bfb0f319f3d8b334bdb2e12340f8b9b3c (diff)
downloadopenttd-f89375aa44959efe4a8a098a13ac7f66897faaa2.tar.xz
(svn r25731) -Fix [FS#5692]: Minor RTL alignment issues. (sbr)
Diffstat (limited to 'src/signs_gui.cpp')
-rw-r--r--src/signs_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp
index 665603cf0..aa2154e49 100644
--- a/src/signs_gui.cpp
+++ b/src/signs_gui.cpp
@@ -198,7 +198,7 @@ struct SignListWindow : Window, SignList {
uint y = r.top + WD_FRAMERECT_TOP; // Offset from top of widget.
/* No signs? */
if (this->vscroll->GetCount() == 0) {
- DrawString(r.left + WD_FRAMETEXT_LEFT, r.right, y, STR_STATION_LIST_NONE);
+ DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, STR_STATION_LIST_NONE);
return;
}