diff --git a/src/openrct2-ui/windows/Scenery.cpp b/src/openrct2-ui/windows/Scenery.cpp index 50742b8e4b..d22a433dc3 100644 --- a/src/openrct2-ui/windows/Scenery.cpp +++ b/src/openrct2-ui/windows/Scenery.cpp @@ -496,8 +496,9 @@ namespace OpenRCT2::Ui::Windows if (height < min_height) { height = min_height; - Invalidate(); + OnPrepareDraw(); ContentUpdateScroll(); + Invalidate(); } } } @@ -517,6 +518,7 @@ namespace OpenRCT2::Ui::Windows { Invalidate(); height = max_height; + OnPrepareDraw(); ContentUpdateScroll(); }