summaryrefslogtreecommitdiff
path: root/vehicle_gui.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-01 15:03:15 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-01 15:03:15 +0000
commitc2220a98366172370e4ce47c31188ab16dab3760 (patch)
tree1fabbc18071cfc04fe08b9ca64d27dbf8495bef9 /vehicle_gui.c
parent8d5c98ee873525a5dc06cb9fe3a40ec31870d2fe (diff)
downloadopenttd-c2220a98366172370e4ce47c31188ab16dab3760.tar.xz
(svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...
Diffstat (limited to 'vehicle_gui.c')
-rw-r--r--vehicle_gui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c
index b70cc3ad4..51596726b 100644
--- a/vehicle_gui.c
+++ b/vehicle_gui.c
@@ -333,10 +333,11 @@ static void VehicleRefitWndProc(Window *w, WindowEvent *e)
free(WP(w, refit_d).list);
WP(w, refit_d).list = BuildRefitList(v);
WP(w, refit_d).length = length;
- SetVScrollCount(w, WP(w, refit_d).list->num_lines);
}
}
+ SetVScrollCount(w, WP(w, refit_d).list->num_lines);
+
SetDParam(0, v->string_id);
SetDParam(1, v->unitnumber);
DrawWindowWidgets(w);