diff --git a/src/musikbox/Main.cpp b/src/musikbox/Main.cpp index 81fd52394..0ba343fd6 100644 --- a/src/musikbox/Main.cpp +++ b/src/musikbox/Main.cpp @@ -265,7 +265,7 @@ int main(int argc, char* argv[]) else if (kn == "KEY_RESIZE") { libraryLayout->Layout(); consoleLayout->Layout(); - state.layout->Show(); + state.layout->BringToTop(); } else if (ch == KEY_F(1)) { changeLayout(state, libraryLayout); diff --git a/src/musikbox/cursespp/Window.cpp b/src/musikbox/cursespp/Window.cpp index 8fa2e2229..43eb8f9e1 100755 --- a/src/musikbox/cursespp/Window.cpp +++ b/src/musikbox/cursespp/Window.cpp @@ -312,8 +312,7 @@ void Window::Create() { } } - this->isVisible = true; - this->Repaint(); + this->Show(); } void Window::Hide() {