Browse Source

yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug

pull/15/merge
Tobias 7 years ago
committed by GitHub
parent
commit
9333ee29ca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/yuzu/main.cpp

2
src/yuzu/main.cpp

@ -1612,7 +1612,7 @@ void GMainWindow::closeEvent(QCloseEvent* event) {
return;
}
if (ui.action_Fullscreen->isChecked()) {
if (!ui.action_Fullscreen->isChecked()) {
UISettings::values.geometry = saveGeometry();
UISettings::values.renderwindow_geometry = render_window->saveGeometry();
}

Loading…
Cancel
Save