diff options
author | frosch <frosch@openttd.org> | 2011-12-04 10:47:57 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2011-12-04 10:47:57 +0000 |
commit | 51da427daede536ce7d021454e87dd0c89c6d99f (patch) | |
tree | a2382f4997ba39289f9316749901ce960828c704 | |
parent | 5fc4ce1eb164e9abe15491924d8a7eaacec8c933 (diff) | |
download | openttd-51da427daede536ce7d021454e87dd0c89c6d99f.tar.xz |
(svn r23420) -Change: Put the manager name directly under the picture instead of vertically centering it.
-rw-r--r-- | src/company_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/company_gui.cpp b/src/company_gui.cpp index 20ff13667..54ecb2614 100644 --- a/src/company_gui.cpp +++ b/src/company_gui.cpp @@ -2272,7 +2272,7 @@ struct CompanyWindow : Window case CW_WIDGET_FACE_TITLE: SetDParam(0, c->index); - DrawStringMultiLine(r.left, r.right, r.top, r.bottom, STR_COMPANY_VIEW_PRESIDENT_MANAGER_TITLE, TC_FROMSTRING, SA_CENTER); + DrawStringMultiLine(r.left, r.right, r.top, r.bottom, STR_COMPANY_VIEW_PRESIDENT_MANAGER_TITLE, TC_FROMSTRING, SA_HOR_CENTER); break; case CW_WIDGET_DESC_COLOUR_SCHEME_EXAMPLE: { |