summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2016-12-18 16:12:21 -0500
committerGravatar GitHub2016-12-18 16:12:21 -0500
commitdac86b61ee32d535154d69cee93cf28f01a5e7b8 (patch)
tree198916d07416cc6505e201d55c5c4fc46f7132ac /src
parentMerge pull request #2347 from citra-emu/revert-2321-flush-pages (diff)
parentFixed game_list focusing issue. (diff)
downloadyuzu-dac86b61ee32d535154d69cee93cf28f01a5e7b8.tar.gz
yuzu-dac86b61ee32d535154d69cee93cf28f01a5e7b8.tar.xz
yuzu-dac86b61ee32d535154d69cee93cf28f01a5e7b8.zip
Merge pull request #2351 from CaptV0rt3x/master
Fixed game_list focus issue.
Diffstat (limited to 'src')
-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 3e3c92f24..74feec81f 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -390,6 +390,7 @@ void GMainWindow::BootGame(const std::string& filename) {
390 game_list->hide(); 390 game_list->hide();
391 } 391 }
392 render_window->show(); 392 render_window->show();
393 render_window->setFocus();
393 394
394 emulation_running = true; 395 emulation_running = true;
395 OnStartGame(); 396 OnStartGame();