(svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...

This commit is contained in:
peter1138 2006-10-01 15:03:15 +00:00
parent 8d5c98ee87
commit c2220a9836

View File

@ -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);