diff options
author | terkhen <terkhen@openttd.org> | 2011-04-17 18:42:17 +0000 |
---|---|---|
committer | terkhen <terkhen@openttd.org> | 2011-04-17 18:42:17 +0000 |
commit | 10caf391a1b6de33e1ac03236b2744adc9a2b2c5 (patch) | |
tree | e15e81245ef9d18ae217a50ad0b276692213a725 /src/ai | |
parent | e874f0e16e5ddaff3c5f40f419f31aedc7226897 (diff) | |
download | openttd-10caf391a1b6de33e1ac03236b2744adc9a2b2c5.tar.xz |
(svn r22343) -Change: Remove pixel limiter for query strings.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index edbd9652c..7d2b1fecd 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -397,7 +397,7 @@ struct AISettingsWindow : public Window { /* Display a query box so users can enter a custom value. */ this->clicked_row = num; SetDParam(0, this->ai_config->GetSetting(config_item.name)); - ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPTION, 10, 100, this, CS_NUMERAL, QSF_NONE); + ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPTION, 10, this, CS_NUMERAL, QSF_NONE); } this->SetDirty(); |