(svn r18171) -Change: always align the about to the left; it is not translated and as such it's never a RTL text.

This commit is contained in:
rubidium 2009-11-18 20:27:18 +00:00
parent cee67acfba
commit b6f627a968
1 changed files with 1 additions and 1 deletions

View File

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