mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
Fix #6657: Reset tracking icon status when opening guest list
The guest tracking icon is hidden on the guest list if it's in PAGE_SUMMARISED mode. Closing then reopening the window reset it back to INDIVIDUAL mode but did not restore the icon state.
This commit is contained in:
parent
7f6471e896
commit
3bb9d41908
2 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@
|
|||
- Fix: [#6481] Can't take screenshots of parks with colons in the name.
|
||||
- Fix: [#6500] Failure to load resources when config file is missing.
|
||||
- Fix: [#6593] Cannot hire entertainers when default scenery groups are not selected (original bug).
|
||||
- Fix: [#6657] Guest list is missing tracking icon after reopening.
|
||||
- Fix: Infinite loop when removing scenery elements with >127 base height.
|
||||
- Fix: Ghosting of transparent map elements when the viewport is moved in OpenGL mode.
|
||||
- Fix: Clear IME buffer after committing composed text.
|
||||
|
|
|
@ -201,6 +201,7 @@ rct_window * window_guest_list_open()
|
|||
_window_guest_list_selected_page = 0;
|
||||
_window_guest_list_num_pages = 1;
|
||||
_window_guest_list_tracking_only = false;
|
||||
window_guest_list_widgets[WIDX_TRACKING].type = WWT_FLATBTN;
|
||||
window_guest_list_widgets[WIDX_PAGE_DROPDOWN].type = WWT_EMPTY;
|
||||
window_guest_list_widgets[WIDX_PAGE_DROPDOWN_BUTTON].type = WWT_EMPTY;
|
||||
window->var_492 = 0;
|
||||
|
|
Loading…
Reference in a new issue