(svn r25731) -Fix [FS#5692]: Minor RTL alignment issues. (sbr)

This commit is contained in:
frosch
2013-08-18 19:30:25 +00:00
parent fe4aa47bfb
commit f89375aa44
4 changed files with 4 additions and 4 deletions

View File

@@ -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;
}