Keep "Save track design" dropdown open (#7531)

This commit is contained in:
wolfreak99 2018-05-19 08:13:08 -04:00 committed by Aaron van Geffen
parent ee56021067
commit 8c9b56d0f2
2 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,7 @@
- Improved: [#7302] Raising land near the map edge makes the affected area smaller instead of showing an 'off edge map' error.
- Improved: [#7435] Object indexing now supports multi-threading.
- Improved: [#7510] Add horizontal clipping to cut-away view options.
- Improved: [#7531] "Save track design" dropdown now stays open.
0.1.2 (2018-03-18)
------------------------------------------------------------------------

View File

@ -5101,7 +5101,7 @@ static void window_ride_measurements_mousedown(rct_window *w, rct_widgetindex wi
w->y + widget->top,
widget->bottom - widget->top + 1,
w->colours[1],
0,
DROPDOWN_FLAG_STAY_OPEN,
2
);
gDropdownDefaultIndex = 0;
@ -5113,6 +5113,7 @@ static void window_ride_measurements_mousedown(rct_window *w, rct_widgetindex wi
{
// Disable saving without scenery if we're a flat ride
dropdown_set_disabled(0, true);
gDropdownDefaultIndex = 1;
}
}