From df14491cf30e1e1b6b3d35da83cb77a8d331ff11 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 298649aaf6..bf010a2bae 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 {