From 1a0d25dab161927da00fad364963d93e2e6f9602 Mon Sep 17 00:00:00 2001 From: yexo Date: Thu, 16 Jun 2011 09:46:24 +0000 Subject: [PATCH] (svn r22593) -Fix [FS#4647]: don't show cargo accepted/produced in the new station window when no tiles are selected (mouse hovering a window or toolbar) --- src/station_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 4078ecbbff..9d7759af5a 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -84,7 +84,7 @@ static int DrawCargoListText(uint32 cargo_mask, const Rect &r, StringID prefix) int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies) { TileIndex tile = TileVirtXY(_thd.pos.x, _thd.pos.y); - if (tile < MapSize()) { + if (_thd.drawstyle == HT_RECT && tile < MapSize()) { CargoArray cargos; if (supplies) { cargos = GetProductionAroundTiles(tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE, rad);