House picker: Allow only one instance, remove button toggle behaviour.

This makes it behave more like object picker window.
This commit is contained in:
Jonathan G Rennison
2015-09-09 19:44:42 +01:00
parent 5a2ecfd548
commit 7040d61287
2 changed files with 5 additions and 5 deletions

View File

@@ -1717,6 +1717,9 @@ static WindowDesc _house_picker_desc(
*/
void ShowBuildHousePicker(Window *parent)
{
if (BringWindowToFrontById(WC_BUILD_HOUSE, 0) != NULL) {
return;
}
new HousePickerWindow(&_house_picker_desc, parent);
}