From 2ce2e05db0ddb68c7bca58d039da4ac5d35cb598 Mon Sep 17 00:00:00 2001 From: archshift Date: Tue, 6 Oct 2015 12:20:26 -0700 Subject: [PATCH] Game list: propely hide on toggling window mode Properly hides the game list upon toggling from external window mode to single window mode. Previously, both the game list and the render window would have been shown at the same time upon toggling. --- src/citra_qt/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 298649aaf..bf010a2ba 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -458,6 +458,7 @@ void GMainWindow::ToggleWindowMode() { if (emulation_running) { render_window->setVisible(true); render_window->setFocus(); + game_list->hide(); } } else {