# HG changeset patch # User maedhros # Date 2007-06-20 19:57:18 # Node ID 989d63001a6dcb1a340185e0723d88238b024b2b # Parent 8e1c715f9e05f003fd85484f5db3c0ba3d452ba3 (svn r10238) -Fix (r10236): Resizing the timetable window caused it to think it could only show one line at a time. diff --git a/src/timetable_gui.cpp b/src/timetable_gui.cpp --- a/src/timetable_gui.cpp +++ b/src/timetable_gui.cpp @@ -263,7 +263,7 @@ static void TimetableWndProc(Window *w, case WE_RESIZE: /* Update the scroll + matrix */ - w->vscroll.cap = (w->widget[2].bottom - w->widget[2].top) / 10; + w->vscroll.cap = (w->widget[3].bottom - w->widget[3].top) / 10; break; }