mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-15 06:42:58 +00:00
Merge pull request #8400 from Docteh/fullscreen_glitch
fix UI opening fullscreen after certain crashes
This commit is contained in:
commit
af418eb666
|
@ -1015,6 +1015,10 @@ void GMainWindow::SetDefaultUIGeometry() {
|
|||
void GMainWindow::RestoreUIState() {
|
||||
setWindowFlags(windowFlags() & ~Qt::FramelessWindowHint);
|
||||
restoreGeometry(UISettings::values.geometry);
|
||||
// Work-around because the games list isn't supposed to be full screen
|
||||
if (isFullScreen()) {
|
||||
showNormal();
|
||||
}
|
||||
restoreState(UISettings::values.state);
|
||||
render_window->setWindowFlags(render_window->windowFlags() & ~Qt::FramelessWindowHint);
|
||||
render_window->restoreGeometry(UISettings::values.renderwindow_geometry);
|
||||
|
|
Loading…
Reference in a new issue