From b6f627a96867a3213522b77b4b86ee3dad8f82bc Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 18 Nov 2009 20:27:18 +0000 Subject: [PATCH] (svn r18171) -Change: always align the about to the left; it is not translated and as such it's never a RTL text. --- src/misc_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index ce8e3df169..d8c983d464 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -461,7 +461,7 @@ struct AboutWindow : public Window { /* Show all scrolling _credits */ for (uint i = 0; i < lengthof(_credits); i++) { if (y >= r.top + 7 && y < r.bottom - this->line_height) { - DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, _credits[i], TC_BLACK); + DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, _credits[i], TC_BLACK, SA_LEFT | SA_FORCE); } y += this->line_height; }