Merge pull request #8400 from Docteh/fullscreen_glitch

fix UI opening fullscreen after certain crashes
This commit is contained in:
bunnei 2022-06-01 10:26:24 -07:00 committed by GitHub
commit af418eb666
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);