diff options
author | frosch <frosch@openttd.org> | 2011-06-11 21:12:28 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2011-06-11 21:12:28 +0000 |
commit | 3f003c097730e8883d5db88cf30aff968c143f68 (patch) | |
tree | 06914c7ca78ba6a025e267737a8f8063b261e5bf /src/ai | |
parent | d5e7537e14521481539a9da1745ce6a2790fcefa (diff) | |
download | openttd-3f003c097730e8883d5db88cf30aff968c143f68.tar.xz |
(svn r22553) -Fix (r22499): NewGRF parameter window was not set dirty, when changing row selection.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 08d332ebf..6426dd3c7 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -411,8 +411,6 @@ struct AISettingsWindow : public Window { this->timeout = 5; this->CheckDifficultyLevel(); - - this->SetDirty(); } } else if (!bool_item) { /* Display a query box so users can enter a custom value. */ @@ -420,6 +418,7 @@ struct AISettingsWindow : public Window { SetDParam(0, this->ai_config->GetSetting(config_item.name)); ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPTION, 10, this, CS_NUMERAL, QSF_NONE); } + this->SetDirty(); break; } |