diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 66c45ee384..dc7a25780a 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,6 +1,7 @@ 0.4.18 (in development) ------------------------------------------------------------------------ - Improved: [#23260] Add diagonal (block) brakes to LSM Launched Roller Coaster. +- Improved: [#23350] Increased the maximum width of the ride graph window. - Fix: [#23286] Currency formatted incorrectly in the in game console. 0.4.17 (2024-12-08) diff --git a/src/openrct2-ui/windows/Ride.cpp b/src/openrct2-ui/windows/Ride.cpp index 4e89347cd3..7a96c34847 100644 --- a/src/openrct2-ui/windows/Ride.cpp +++ b/src/openrct2-ui/windows/Ride.cpp @@ -5946,7 +5946,7 @@ namespace OpenRCT2::Ui::Windows void GraphsResize() { - WindowSetResize(*this, 316, 182, 500, 450); + WindowSetResize(*this, 316, 182, 5000, 450); } void GraphsOnMouseDown(WidgetIndex widgetIndex)