From ee111ce1a4cffff6d6efaaec430614d2fc736dd5 Mon Sep 17 00:00:00 2001 From: frosch Date: Tue, 22 Feb 2011 20:28:24 +0000 Subject: (svn r22128) -Fix [FS#4530]: Build-station-window showed wrong selection when reopening. (Regiovogel) --- src/rail_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp index 4503a29f2..2b391218b 100644 --- a/src/rail_gui.cpp +++ b/src/rail_gui.cpp @@ -1004,7 +1004,7 @@ public: NWidgetMatrix *matrix = this->GetWidget(BRSW_MATRIX); matrix->SetScrollbar(this->vscroll2); matrix->SetCount(_railstation.station_count); - matrix->SetClicked(0); + matrix->SetClicked(_railstation.station_type); } } -- cgit v1.2.3-54-g00ecf