diff --git a/pcsx2/gui/Panels/GSWindowPanel.cpp b/pcsx2/gui/Panels/GSWindowPanel.cpp index a2e1b920ec..7598e0c0b6 100644 --- a/pcsx2/gui/Panels/GSWindowPanel.cpp +++ b/pcsx2/gui/Panels/GSWindowPanel.cpp @@ -133,8 +133,8 @@ void Panels::GSWindowSettingsPanel::ApplyConfigToGui( AppConfig& configToApply, m_check_DclickFullscreen ->SetValue ( conf.IsToggleFullscreenOnDoubleClick ); - m_text_WindowWidth ->SetValue( wxsFormat( L"%d", conf.WindowSize.GetWidth() ) ); - m_text_WindowHeight ->SetValue( wxsFormat( L"%d", conf.WindowSize.GetHeight() ) ); + m_text_WindowWidth ->ChangeValue( wxsFormat( L"%d", conf.WindowSize.GetWidth() ) ); + m_text_WindowHeight ->ChangeValue( wxsFormat( L"%d", conf.WindowSize.GetHeight() ) ); } m_check_VsyncEnable->Enable(!configToApply.EnablePresets); diff --git a/pcsx2/gui/Panels/VideoPanel.cpp b/pcsx2/gui/Panels/VideoPanel.cpp index d86fbc5bb8..de82da38a5 100644 --- a/pcsx2/gui/Panels/VideoPanel.cpp +++ b/pcsx2/gui/Panels/VideoPanel.cpp @@ -129,8 +129,8 @@ void Panels::FramelimiterPanel::ApplyConfigToGui( AppConfig& configToApply, int m_spin_TurboPct ->SetValue( appfps.TurboScalar.Raw ); m_spin_SlomoPct ->SetValue( appfps.SlomoScalar.Raw ); - m_text_BaseNtsc ->SetValue( gsconf.FramerateNTSC.ToString() ); - m_text_BasePal ->SetValue( gsconf.FrameratePAL.ToString() ); + m_text_BaseNtsc ->ChangeValue( gsconf.FramerateNTSC.ToString() ); + m_text_BasePal ->ChangeValue( gsconf.FrameratePAL.ToString() ); m_spin_NominalPct ->Enable(!configToApply.EnablePresets); m_spin_TurboPct ->Enable(!configToApply.EnablePresets);