# HG changeset patch # User maedhros # Date 1182369438 0 # Node ID d114b3a8d5b899928fced5ecb2bf67ee9df84b23 # Parent 9af49f50fe33dd1577ff7e08a4adfea691f81364 (svn r10238) -Fix (r10236): Resizing the timetable window caused it to think it could only show one line at a time. diff -r 9af49f50fe33 -r d114b3a8d5b8 src/timetable_gui.cpp --- a/src/timetable_gui.cpp Wed Jun 20 19:26:25 2007 +0000 +++ b/src/timetable_gui.cpp Wed Jun 20 19:57:18 2007 +0000 @@ -263,7 +263,7 @@ 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; }