Qt: Fix mute settings not being loaded on setting screen (fixes #2990)

This commit is contained in:
Vicki Pfau 2023-08-08 19:34:10 -07:00
parent e86e9d0c76
commit d6291bcc05
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@ Emulation fixes:
Other fixes:
- mGUI: Fix cases where an older save state screenshot would be shown (fixes mgba.io/i/2183)
- Qt: Re-enable sync for multiplayer windows that aren't connected (fixes mgba.io/i/2974)
- Qt: Fix mute settings not being loaded on setting screen (fixes mgba.io/i/2990)
Misc:
- Qt: Add exporting of SAV + RTC saves from Save Converter to strip RTC data

View File

@ -699,6 +699,8 @@ void SettingsView::reloadConfig() {
loadSetting("suspendScreensaver", m_ui.suspendScreensaver);
loadSetting("pauseOnFocusLost", m_ui.pauseOnFocusLost);
loadSetting("pauseOnMinimize", m_ui.pauseOnMinimize);
loadSetting("muteOnFocusLost", m_ui.muteOnFocusLost);
loadSetting("muteOnMinimize", m_ui.muteOnMinimize);
loadSetting("savegamePath", m_ui.savegamePath);
loadSetting("savestatePath", m_ui.savestatePath);
loadSetting("screenshotPath", m_ui.screenshotPath);