diff options
author | bunnei <bunneidev@gmail.com> | 2016-12-18 16:12:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-18 16:12:21 -0500 |
commit | dac86b61ee32d535154d69cee93cf28f01a5e7b8 (patch) | |
tree | 198916d07416cc6505e201d55c5c4fc46f7132ac | |
parent | 4c45611a2b0535bcc64a2583ffc763afcddaaf2a (diff) | |
parent | 27217c621bd68eb467b7259be7a03feddad0f0ee (diff) |
Merge pull request #2351 from CaptV0rt3x/master
Fixed game_list focus issue.
-rw-r--r-- | src/citra_qt/main.cpp | 1 |
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) { game_list->hide(); } render_window->show(); + render_window->setFocus(); emulation_running = true; OnStartGame(); |