1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Update guest list defaults

This commit is contained in:
Rik Smeets
2022-02-27 18:46:08 +01:00
committed by GitHub
parent d606c9730a
commit 1f83fa417c
3 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -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).

View File

@@ -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;
}