aboutsummaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-10-06 12:20:26 -0700
committerarchshift <gh@archshift.com>2015-10-06 12:20:26 -0700
commit2ce2e05db0ddb68c7bca58d039da4ac5d35cb598 (patch)
treec31fd7b8190e881bac4623ebd84a2e4794c87ecc /src/citra_qt/main.cpp
parent87eca546b29e841f85810a7134e5fca022d165c2 (diff)
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.
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp1
1 files changed, 1 insertions, 0 deletions
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 {