diff options
author | rubidium <rubidium@openttd.org> | 2009-11-16 17:56:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-16 17:56:59 +0000 |
commit | fdbe2d827c8533110d7618cda24f2a4f5008405e (patch) | |
tree | 59a121bc734cad4fa95aaf0510120b0d4f241f6a /src | |
parent | 1c5a92ae98954adb4c8e3841577ad771f79aaa47 (diff) | |
download | openttd-fdbe2d827c8533110d7618cda24f2a4f5008405e.tar.xz |
(svn r18122) -Fix: the build vehicle GUI would draw a (few) pixels over the border
Diffstat (limited to 'src')
-rw-r--r-- | src/build_vehicle_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp index fa896016f..f6a0e4676 100644 --- a/src/build_vehicle_gui.cpp +++ b/src/build_vehicle_gui.cpp @@ -1104,7 +1104,7 @@ struct BuildVehicleWindow : Window { { switch (widget) { case BUILD_VEHICLE_WIDGET_LIST: - DrawEngineList(this->vehicle_type, r.left + WD_FRAMERECT_LEFT, r.right + WD_FRAMERECT_RIGHT, r.top + WD_FRAMERECT_TOP, &this->eng_list, this->vscroll.GetPosition(), min(this->vscroll.GetPosition() + this->vscroll.GetCapacity(), this->eng_list.Length()), this->sel_engine, false, DEFAULT_GROUP); + DrawEngineList(this->vehicle_type, r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, r.top + WD_FRAMERECT_TOP, &this->eng_list, this->vscroll.GetPosition(), min(this->vscroll.GetPosition() + this->vscroll.GetCapacity(), this->eng_list.Length()), this->sel_engine, false, DEFAULT_GROUP); break; case BUILD_VEHICLE_WIDGET_SORT_ASSENDING_DESCENDING: |