1
0
Fork 0

(svn r18586) -Fix [FS#3398]: pressing default for the starting year/snow line height edit boxes of the world generation windows didn't work.

release/1.0
rubidium 2009-12-21 16:16:37 +00:00
parent abb601f682
commit cc40883ad8
1 changed files with 26 additions and 17 deletions

View File

@ -732,8 +732,18 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
virtual void OnQueryTextFinished(char *str)
{
int32 value;
if (!StrEmpty(str)) {
int32 value = atoi(str);
value = atoi(str);
} else {
/* An empty string means revert to the default */
switch (this->widget_id) {
case GLAND_START_DATE_TEXT: value = DEF_START_YEAR; break;
case GLAND_SNOW_LEVEL_TEXT: value = DEF_SNOWLINE_HEIGHT; break;
case GLAND_TOWN_PULLDOWN: value = 1; break; // There's not really a default
default: NOT_REACHED();
}
}
switch (this->widget_id) {
case GLAND_START_DATE_TEXT:
@ -753,7 +763,6 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
this->SetDirty();
}
}
};
static const WindowDesc _generate_landscape_desc(