From 091da9bdef548470d6539a209087f0c5ef74c9ba Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Fri, 18 Jul 2025 15:02:05 +0200 Subject: [PATCH] Fix LoadSave window frame not resizing when toggling previews --- distribution/changelog.txt | 1 + src/openrct2-ui/windows/LoadSave.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 5bd84ba4c1..79ddccc4d4 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -9,6 +9,7 @@ - Fix: [#24711] The map smoothing function only partially works for custom height map image files. - Fix: [#24773] The new ride window debug authors does not show the correct authors for non legacy ride objects. - Fix: [#24775] The scenery and new ride windows do not filter by file name or identifier correctly for non legacy objects. +- Fix: [#24794] The load/save browser does not resize cleanly when toggling the preview sidebar. - Fix: [#24824] The Air Powered Vertical Coaster top section track piece has vertical tunnels (original bug). - Fix: [#24825] The River Rapids flat-to-gentle track piece tunnels are incorrect on the gentle side. - Fix: [#24826] The Junior Roller Coaster flat-to-steep track piece tunnels are incorrect. diff --git a/src/openrct2-ui/windows/LoadSave.cpp b/src/openrct2-ui/windows/LoadSave.cpp index ffd4376388..41d4ea666f 100644 --- a/src/openrct2-ui/windows/LoadSave.cpp +++ b/src/openrct2-ui/windows/LoadSave.cpp @@ -918,6 +918,8 @@ namespace OpenRCT2::Ui::Windows { Config::Save(); Invalidate(); + ResizeFrame(); + OnResize(); } }