summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-10-12 00:43:18 +0000
committerbelugas <belugas@openttd.org>2007-10-12 00:43:18 +0000
commit276aad47f9669b4cd4acdb462dc1f407774ddc30 (patch)
tree221c8e7c27c642951223eadeffbb7b934a943eca /src/industry_gui.cpp
parent91cf35f7cf1d3e73f4dffbe2243fed9e9c7933a1 (diff)
downloadopenttd-276aad47f9669b4cd4acdb462dc1f407774ddc30.tar.xz
(svn r11247) -Fix: The Industry's name to fund could be larger than the window itself. Now, it fits within the physical allowed space
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index 682b61641..e38796a5e 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -173,7 +173,7 @@ static void BuildDynamicIndustryWndProc(Window *w, WindowEvent *e)
const IndustrySpec *indsp = GetIndustrySpec(_fund_gui.index[i + w->vscroll.pos]);
/* Draw the name of the industry in white is selected, otherwise, in orange */
- DrawString(20, y + offset, indsp->name, selected ? 12 : 6);
+ DrawStringTruncated(20, y + offset, indsp->name, selected ? 12 : 6, max_width - 25);
GfxFillRect(x, y + 1 + offset, x + 10, y + 7 + offset, selected ? 15 : 0);
GfxFillRect(x + 1, y + 2 + offset, x + 9, y + 6 + offset, indsp->map_colour);
}