From 200d3fdbe83717437d7dad0fb99b180c3ca103a7 Mon Sep 17 00:00:00 2001 From: dominik Date: Sun, 14 Nov 2004 18:20:40 +0000 Subject: [PATCH] (svn r606) -newgrf: Fixed waypoint scrollbar --- rail_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rail_gui.c b/rail_gui.c index 2b84883e71..07eedf82a4 100644 --- a/rail_gui.c +++ b/rail_gui.c @@ -1120,7 +1120,7 @@ static const WindowDesc _build_waypoint_desc = { static void ShowBuildWaypointPicker() { Window *w = AllocateWindowDesc(&_build_waypoint_desc); - w->hscroll.cap = 1; + w->hscroll.cap = 4; w->hscroll.count = (uint) (_waypoint_count+3) / 4; }