Fix #18467: "Selected only" filter is active in Track Designs Manager

This commit is contained in:
mdbckrtn 2022-12-31 08:10:38 -05:00 committed by GitHub
parent 09c8e4755f
commit bb1c5d8ca8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -204,6 +204,7 @@ The following people are not part of the development team, but have been contrib
* Xixiang Chen (jacknull1991)
* (ReticulatingSplines)
* Conrad Cash (HouseholdVTuber)
* Michael Bickerton (mdbckrtn)
## Toolchain

View File

@ -4,7 +4,8 @@
- Feature: [#18732] [Plugin] API to get the guests thoughts.
- Feature: [#18744] Cheat to allow using a regular path as a queue path.
- Improved: [#18826] [Plugin] Added all actions and their documentation to plugin API.
- Fix: [#18911] Update mini golf fencing to draw correctly from all angles.
- Fix: [#18467] “Selected only” Object Selection filter is active in Track Designs Manager, and cannot be toggled.
- Fix: [#18911] Mini Golf station does not draw correctly from all angles.
0.4.3 (2022-12-14)
------------------------------------------------------------------------

View File

@ -1307,6 +1307,11 @@ private:
bool FilterSelected(uint8_t objectFlag)
{
// Track Manager has no concept of selection filtering, so always return true
if (gScreenFlags & SCREEN_FLAGS_TRACK_MANAGER)
{
return true;
}
if (_FILTER_SELECTED == _FILTER_NONSELECTED)
{
return true;