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/waypoint_gui.cpp | |
parent | e874f0e16e5ddaff3c5f40f419f31aedc7226897 (diff) | |
download | openttd-10caf391a1b6de33e1ac03236b2744adc9a2b2c5.tar.xz |
(svn r22343) -Change: Remove pixel limiter for query strings.
Diffstat (limited to 'src/waypoint_gui.cpp')
-rw-r--r-- | src/waypoint_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint_gui.cpp b/src/waypoint_gui.cpp index af126f3ae..869086a5d 100644 --- a/src/waypoint_gui.cpp +++ b/src/waypoint_gui.cpp @@ -105,7 +105,7 @@ public: case WAYPVW_RENAME: // rename SetDParam(0, this->wp->index); - ShowQueryString(STR_WAYPOINT_NAME, STR_EDIT_WAYPOINT_NAME, MAX_LENGTH_STATION_NAME_CHARS, MAX_LENGTH_STATION_NAME_PIXELS, this, CS_ALPHANUMERAL, QSF_ENABLE_DEFAULT | QSF_LEN_IN_CHARS); + ShowQueryString(STR_WAYPOINT_NAME, STR_EDIT_WAYPOINT_NAME, MAX_LENGTH_STATION_NAME_CHARS, this, CS_ALPHANUMERAL, QSF_ENABLE_DEFAULT | QSF_LEN_IN_CHARS); break; case WAYPVW_SHOW_VEHICLES: // show list of vehicles having this waypoint in their orders |