From 045bee52291b4b2ea9a6c5b12f4fb0a880137ea5 Mon Sep 17 00:00:00 2001 From: yexo Date: Sat, 20 Feb 2010 21:21:54 +0000 Subject: [PATCH] (svn r19176) -Fix [FS#3632] (r17859): when selecting "build many industries" in the scenario editor the "build" button wasn't enabled --- src/industry_gui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index e5848dbd15..56ceeb81b3 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -155,6 +155,7 @@ class BuildIndustryWindow : public Window { if (_game_mode == GM_EDITOR) { // give room for the Many Random "button" this->index[this->count] = INVALID_INDUSTRYTYPE; + this->enabled[this->count] = true; this->count++; this->timer_enabled = false; }