Qt: Fix missing window border after exiting fullscreen under Windows

This commit is contained in:
spycrab 2017-07-16 01:03:54 +02:00
parent ba356f78d1
commit e3cf1e4f37
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);
}
}
}