diff --git a/contributors.md b/contributors.md index a4ceb6c2fd..3341fbb899 100644 --- a/contributors.md +++ b/contributors.md @@ -183,6 +183,7 @@ The following people are not part of the development team, but have been contrib * Cory Sanin (CorySanin) * Vinícius Hashimoto (vkhashimoto) * Gal B. (GalBr) +* Rik Smeets (rik-smeets) ## Toolchain * (Balletie) - macOS diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 5af4e5e813..7067b7d940 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -28,6 +28,7 @@ - Change: [#16077] When importing SV6 files, the RCT1 land types are only added when they were actually used. - Change: [#16424] Following an entity in the title sequence no longer toggles underground view when it's underground. - Change: [#16493] Boat Hire and Submarine Ride support costs now match their visual appearance. +- Change: [#16710] Changed default view of Guest List to 'Thoughts' and selected tab will default to 'Summarised' (when opened from the menu). - Fix: [#11752] Track pieces with fractional cost are too cheap to build. - Fix: [#12774] [Plugin] Scripts will not be re-initialised when a new scenario is loaded from within a running scenario. - Fix: [#13336] Can no longer place Bumble Bee track design (reverts #12707). diff --git a/src/openrct2-ui/windows/GuestList.cpp b/src/openrct2-ui/windows/GuestList.cpp index 6d9aa93be7..4b59598ae8 100644 --- a/src/openrct2-ui/windows/GuestList.cpp +++ b/src/openrct2-ui/windows/GuestList.cpp @@ -156,7 +156,8 @@ public: widgets = window_guest_list_widgets; WindowInitScrollWidgets(this); - _selectedTab = TabId::Individual; + _selectedTab = TabId::Summarised; + _selectedView = GuestViewType::Thoughts; _numPages = 1; widgets[WIDX_TRACKING].type = WindowWidgetType::FlatBtn; widgets[WIDX_FILTER_BY_NAME].type = WindowWidgetType::FlatBtn; @@ -192,7 +193,7 @@ public: _selectedFilter = GuestFilterType::Guests; _highlightedIndex = {}; _selectedTab = TabId::Individual; - _selectedView = GuestViewType::Actions; + _selectedView = GuestViewType::Thoughts; } break; } @@ -207,7 +208,7 @@ public: _selectedFilter = GuestFilterType::Guests; _highlightedIndex = {}; _selectedTab = TabId::Individual; - _selectedView = GuestViewType::Actions; + _selectedView = GuestViewType::Thoughts; } break; }