Changeset - r6982:989d63001a6d
[Not reviewed]
master
0 1 0
maedhros - 17 years ago 2007-06-20 19:57:18
maedhros@openttd.org
(svn r10238) -Fix (r10236): Resizing the timetable window caused it to think it could only show one line at a time.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/timetable_gui.cpp
Show inline comments
 
@@ -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;
 

	
 
	}
0 comments (0 inline, 0 general)