GTK: Don't reset the renderer when entering the display config dialog
This commit is contained in:
parent
f656e4fe45
commit
573aaca70b
|
@ -122,11 +122,14 @@ void DisplayConfigDialog::vOnOutputChanged(VBA::Window::EVideoOutput _eOutput)
|
|||
return;
|
||||
|
||||
if (_eOutput == VBA::Window::OutputOpenGL && m_poOutputOpenGLRadioButton->get_active())
|
||||
{
|
||||
m_poConfig->vSetKey("output", VBA::Window::OutputOpenGL);
|
||||
else if (_eOutput == VBA::Window::OutputCairo && m_poOutputCairoRadioButton->get_active())
|
||||
m_poWindow->vApplyConfigScreenArea();
|
||||
} else if (_eOutput == VBA::Window::OutputCairo && m_poOutputCairoRadioButton->get_active())
|
||||
{
|
||||
m_poConfig->vSetKey("output", VBA::Window::OutputCairo);
|
||||
|
||||
m_poWindow->vApplyConfigScreenArea();
|
||||
m_poWindow->vApplyConfigScreenArea();
|
||||
}
|
||||
}
|
||||
|
||||
void DisplayConfigDialog::vOnScaleChanged()
|
||||
|
|
Loading…
Reference in New Issue