From 9f5c675bc9fa63f9940eb9dceae916c0e1ff6ae2 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Fri, 18 Apr 2025 17:24:33 +0200 Subject: [PATCH] Update existing windows when toggling 'window buttons on the left' (#24237) --- src/openrct2-ui/windows/Options.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2-ui/windows/Options.cpp b/src/openrct2-ui/windows/Options.cpp index 675e936c45..79a5d90be0 100644 --- a/src/openrct2-ui/windows/Options.cpp +++ b/src/openrct2-ui/windows/Options.cpp @@ -1612,6 +1612,7 @@ namespace OpenRCT2::Ui::Windows Config::Save(); Invalidate(); windowMgr->InvalidateAll(); + WindowVisitEach([](WindowBase* w) { w->ResizeFrame(); }); break; case WIDX_ENLARGED_UI: Config::Get().interface.EnlargedUi ^= 1;