Qt: Only dynamically reset video scale if a game is running

This commit is contained in:
Vicki Pfau 2020-01-22 18:19:43 -08:00
parent 7fb5d7006e
commit d044c05f30
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
0.9.0: (Future)
Other fixes:
- Qt: Only dynamically reset video scale if a game is running
0.8.0: (2020-01-21)
Features:
- Improved logging configuration

View File

@ -356,8 +356,10 @@ void PainterGL::resizeContext() {
return;
}
mCore* core = m_context->thread()->core;
core->reloadConfigOption(core, "videoScale", NULL);
if (m_started) {
mCore* core = m_context->thread()->core;
core->reloadConfigOption(core, "videoScale", NULL);
}
QSize size = m_context->screenDimensions();
m_backend->setDimensions(m_backend, size.width(), size.height());