mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Fix #18467: "Selected only" filter is active in Track Designs Manager
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user