Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update guest list defaults #16710

Merged
merged 1 commit into from
Feb 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions distribution/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
7 changes: 4 additions & 3 deletions src/openrct2-ui/windows/GuestList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ class GuestListWindow final : public Window
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;
Expand Down Expand Up @@ -192,7 +193,7 @@ class GuestListWindow final : public Window
_selectedFilter = GuestFilterType::Guests;
_highlightedIndex = {};
_selectedTab = TabId::Individual;
_selectedView = GuestViewType::Actions;
_selectedView = GuestViewType::Thoughts;
}
break;
}
Expand All @@ -207,7 +208,7 @@ class GuestListWindow final : public Window
_selectedFilter = GuestFilterType::Guests;
_highlightedIndex = {};
_selectedTab = TabId::Individual;
_selectedView = GuestViewType::Actions;
_selectedView = GuestViewType::Thoughts;
}
break;
}
Expand Down