Merge pull request #5793 from spycrab/qt_fullscreen_fix

Qt: Fix missing window border after exiting fullscreen under Windows
This commit is contained in:
Anthony 2017-07-19 08:52:22 -07:00 committed by GitHub
commit 39e17ccc41
1 changed files with 1 additions and 1 deletions

View File

@ -470,8 +470,8 @@ void MainWindow::ShowRenderWidget()
}
else
{
m_render_widget->resize(640, 480);
m_render_widget->showNormal();
m_render_widget->resize(640, 480);
}
}
}