mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:59:58 +00:00
Set render window to also accept focus via tabbing (Qt::StrongFocus) (#5089)
This commit is contained in:
parent
7a2f60df26
commit
10ba8d16be
1 changed files with 1 additions and 1 deletions
|
@ -1798,7 +1798,7 @@ void GMainWindow::ToggleWindowMode() {
|
|||
// Render in the main window...
|
||||
render_window->BackupGeometry();
|
||||
ui.horizontalLayout->addWidget(render_window);
|
||||
render_window->setFocusPolicy(Qt::ClickFocus);
|
||||
render_window->setFocusPolicy(Qt::StrongFocus);
|
||||
if (emulation_running) {
|
||||
render_window->setVisible(true);
|
||||
render_window->setFocus();
|
||||
|
|
Loading…
Reference in a new issue