1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Move peep list refreshing to UI module

This commit is contained in:
Marijn van der Werf
2018-01-06 00:55:02 +01:00
committed by Aaron van Geffen
parent 430bf482f2
commit 7aa2cd7ac5
4 changed files with 19 additions and 12 deletions

View File

@@ -327,6 +327,16 @@ public:
window_guest_list_refresh_list();
break;
case INTENT_ACTION_REFRESH_STAFF_LIST:
{
auto w = window_find_by_class(WC_STAFF_LIST);
if (w != NULL)
{
w->no_list_items = 0;
}
break;
}
case INTENT_ACTION_CLEAR_TILE_INSPECTOR_CLIPBOARD:
window_tile_inspector_clear_clipboard();
break;