diff options
author | Vamsi Krishna <c.vamsi.krishna.96@gmail.com> | 2016-12-18 14:58:28 +0530 |
---|---|---|
committer | CaptV0rt3x <c.vamsi.krishna.96@gmail.com> | 2016-12-18 16:13:51 +0530 |
commit | 27217c621bd68eb467b7259be7a03feddad0f0ee (patch) | |
tree | 096cfa20d55335c8ed855081f669f600d54edca5 /src | |
parent | 20b832cfc1cb7fca6dd59a4af2f2c95e3c5eaaab (diff) |
Fixed game_list focusing issue.
added line render_window->setFocus();
Diffstat (limited to 'src')
-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 ad6221739..1e3a0e9d8 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(); |