Browse Source
yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug
pull/15/merge
Tobias
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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(); |
|
|
|
} |
|
|
|
|