From d226495d3b936815cb37b4120424f83d5879f873 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Wed, 12 Oct 2016 20:41:17 +0100 Subject: [PATCH] Fix main pane of departure boards window not being mouse-wheel scrollable. --- src/departures_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/departures_gui.cpp b/src/departures_gui.cpp index c88326d2f3..8a8b6c38c3 100644 --- a/src/departures_gui.cpp +++ b/src/departures_gui.cpp @@ -47,7 +47,7 @@ static const NWidgetPart _nested_departures_list[] = { EndContainer(), NWidget(NWID_HORIZONTAL), - NWidget(WWT_MATRIX, COLOUR_GREY, WID_DB_LIST), SetMinimalSize(0, 0), SetFill(1, 0), SetResize(1, 1), + NWidget(WWT_MATRIX, COLOUR_GREY, WID_DB_LIST), SetMinimalSize(0, 0), SetFill(1, 0), SetResize(1, 1), SetScrollbar(WID_DB_SCROLLBAR), NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_DB_SCROLLBAR), EndContainer(),