mirror of
https://github.com/clangen/musikcube.git
synced 2025-01-01 09:01:15 +00:00
Fixed a bug where OnChildVisibilityChanged() was calling up to
super::OnParentVisibilityChanged(). Oops.
This commit is contained in:
parent
ab79b4bdbe
commit
005bfeeb3a
@ -134,7 +134,7 @@ void LayoutBase::OnParentVisibilityChanged(bool visible) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LayoutBase::OnChildVisibilityChanged(bool visible, IWindow* child) {
|
void LayoutBase::OnChildVisibilityChanged(bool visible, IWindow* child) {
|
||||||
Window::OnParentVisibilityChanged(visible);
|
Window::OnChildVisibilityChanged(visible, child);
|
||||||
this->IndexFocusables();
|
this->IndexFocusables();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user