Fixed a bug where OnChildVisibilityChanged() was calling up to

super::OnParentVisibilityChanged(). Oops.
This commit is contained in:
casey langen 2018-02-12 23:21:24 -08:00
parent ab79b4bdbe
commit 005bfeeb3a

View File

@ -134,7 +134,7 @@ void LayoutBase::OnParentVisibilityChanged(bool visible) {
}
void LayoutBase::OnChildVisibilityChanged(bool visible, IWindow* child) {
Window::OnParentVisibilityChanged(visible);
Window::OnChildVisibilityChanged(visible, child);
this->IndexFocusables();
}