Skip to content

Commit

Permalink
fix getChildViewsOfType is not recursive #291
Browse files Browse the repository at this point in the history
  • Loading branch information
scheffle committed Apr 13, 2023
1 parent 331deb7 commit d29113c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vstgui/lib/cviewcontainer.h
Expand Up @@ -289,7 +289,7 @@ inline uint32_t CViewContainer::getChildViewsOfType (ContainerClass& result, boo
{
if (auto container = child->asViewContainer ())
{
container->getChildViewsOfType<ViewClass, ContainerClass> (result);
container->getChildViewsOfType<ViewClass, ContainerClass> (result, deep);
}
}
}
Expand Down

0 comments on commit d29113c

Please sign in to comment.