You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When objects are loaded into console, we check whether they should be in scope or not. If "Show non containers" option is off, then we only put container objects into scope.
An object is considered a "container" if it's object class is part of the "container object class list". That list is obtained by adconfig. See adconfig ctor where "d->filter_containers" is set.
End result:
If "show non containers" is off, then filter is applied but ends up filtering out all objects out of scope and scope is empty
If option is on, then filter is ignored and scope loads normally
The text was updated successfully, but these errors were encountered:
console_object.cpp
console_object_create()
should_be_in_scope() (anonymous f-n inside)
When objects are loaded into console, we check whether they should be in scope or not. If "Show non containers" option is off, then we only put container objects into scope.
An object is considered a "container" if it's object class is part of the "container object class list". That list is obtained by adconfig. See adconfig ctor where "d->filter_containers" is set.
End result:
The text was updated successfully, but these errors were encountered: