diff options
author | rubidium <rubidium@openttd.org> | 2009-03-22 12:01:21 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-22 12:01:21 +0000 |
commit | 57174a9301aba626f8f25e86e93802636c4e8f45 (patch) | |
tree | 696c8445b29787af5e6368f4923172fb4f13e733 /src/network | |
parent | dfe5dad5f68250ec67a3cb5e69bc7f9f58f9a58c (diff) | |
download | openttd-57174a9301aba626f8f25e86e93802636c4e8f45.tar.xz |
(svn r15808) -Codechange: use the new DrawString API in a number of GUIs
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_content_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network_content_gui.cpp b/src/network/network_content_gui.cpp index 73df3c3a9..e5dd0352e 100644 --- a/src/network/network_content_gui.cpp +++ b/src/network/network_content_gui.cpp @@ -525,7 +525,7 @@ public: /* Draw the total download size */ SetDParam(0, filesize); - DrawString(this->widget[NCLWW_DETAILS].left + 5, this->widget[NCLWW_DETAILS].bottom - 12, STR_CONTENT_TOTAL_DOWNLOAD_SIZE, TC_BLACK); + DrawString(this->widget[NCLWW_DETAILS].left + 5, this->widget[NCLWW_DETAILS].right - 5, this->widget[NCLWW_DETAILS].bottom - 12, STR_CONTENT_TOTAL_DOWNLOAD_SIZE, TC_BLACK); } virtual void OnDoubleClick(Point pt, int widget) |