Browse Source
Merge pull request #327 from adityaruplaha/fullscreen-fix
Fix the stuck in fullscreen bug
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
src/yuzu/main.cpp
|
|
@ -776,9 +776,11 @@ void GMainWindow::closeEvent(QCloseEvent* event) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
UISettings::values.geometry = saveGeometry(); |
|
|
|
|
|
|
|
|
if (ui.action_Fullscreen->isChecked()) { |
|
|
|
|
|
UISettings::values.geometry = saveGeometry(); |
|
|
|
|
|
UISettings::values.renderwindow_geometry = render_window->saveGeometry(); |
|
|
|
|
|
} |
|
|
UISettings::values.state = saveState(); |
|
|
UISettings::values.state = saveState(); |
|
|
UISettings::values.renderwindow_geometry = render_window->saveGeometry(); |
|
|
|
|
|
#if MICROPROFILE_ENABLED
|
|
|
#if MICROPROFILE_ENABLED
|
|
|
UISettings::values.microprofile_geometry = microProfileDialog->saveGeometry(); |
|
|
UISettings::values.microprofile_geometry = microProfileDialog->saveGeometry(); |
|
|
UISettings::values.microprofile_visible = microProfileDialog->isVisible(); |
|
|
UISettings::values.microprofile_visible = microProfileDialog->isVisible(); |
|
|
|