From 005bfeeb3ab9b0c9ca8fa291210a9bdd2263a31b Mon Sep 17 00:00:00 2001 From: casey langen Date: Mon, 12 Feb 2018 23:21:24 -0800 Subject: [PATCH] Fixed a bug where OnChildVisibilityChanged() was calling up to super::OnParentVisibilityChanged(). Oops. --- src/musikcube/cursespp/LayoutBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musikcube/cursespp/LayoutBase.cpp b/src/musikcube/cursespp/LayoutBase.cpp index d15669e8a..db9fa36dd 100755 --- a/src/musikcube/cursespp/LayoutBase.cpp +++ b/src/musikcube/cursespp/LayoutBase.cpp @@ -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(); }