mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r11247) -Fix: The Industry's name to fund could be larger than the window itself. Now, it fits within the physical allowed space
This commit is contained in:
parent
91cf35f7cf
commit
276aad47f9
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user