From 8c276acde70c39d43d8bdd3e7ba1baa4433c5e0d Mon Sep 17 00:00:00 2001 From: IntelOrca Date: Sun, 18 Oct 2015 21:16:00 +0100 Subject: [PATCH] fix #2085 --- src/windows/ride_list.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/windows/ride_list.c b/src/windows/ride_list.c index 1070bd585b..835a87eec7 100644 --- a/src/windows/ride_list.c +++ b/src/windows/ride_list.c @@ -195,8 +195,9 @@ static void window_ride_list_mouseup(rct_window *w, int widgetIndex) w->no_list_items = 0; w->frame_no = 0; w->selected_list_item = -1; - if (w->page != PAGE_RIDES && _window_ride_list_information_type > INFORMATION_TYPE_PROFIT) - _window_ride_list_information_type = INFORMATION_TYPE_PROFIT; + if (w->page != PAGE_RIDES && _window_ride_list_information_type > INFORMATION_TYPE_PROFIT) { + _window_ride_list_information_type = INFORMATION_TYPE_STATUS; + } window_invalidate(w); } break;