summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2015-10-06 12:20:26 -0700
committerGravatar archshift2015-10-06 12:20:26 -0700
commit2ce2e05db0ddb68c7bca58d039da4ac5d35cb598 (patch)
treec31fd7b8190e881bac4623ebd84a2e4794c87ecc
parentMerge pull request #1164 from kemenaran/qt-high-dpi-fixes (diff)
downloadyuzu-2ce2e05db0ddb68c7bca58d039da4ac5d35cb598.tar.gz
yuzu-2ce2e05db0ddb68c7bca58d039da4ac5d35cb598.tar.xz
yuzu-2ce2e05db0ddb68c7bca58d039da4ac5d35cb598.zip
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.
-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 298649aaf..bf010a2ba 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -458,6 +458,7 @@ void GMainWindow::ToggleWindowMode() {
458 if (emulation_running) { 458 if (emulation_running) {
459 render_window->setVisible(true); 459 render_window->setVisible(true);
460 render_window->setFocus(); 460 render_window->setFocus();
461 game_list->hide();
461 } 462 }
462 463
463 } else { 464 } else {