Qt: Fix bindings not applying after profile load/reset

This commit is contained in:
Connor McLaughlin 2022-07-24 22:52:22 +10:00 committed by refractionpcsx2
parent 4040f7afca
commit d9360a66af
1 changed files with 4 additions and 0 deletions

View File

@ -165,6 +165,8 @@ void ControllerSettingsDialog::onLoadProfileClicked()
QtHost::QueueSettingsSave();
}
g_emu_thread->applySettings();
// make it visible
switchProfile({});
}
@ -208,6 +210,8 @@ void ControllerSettingsDialog::onRestoreDefaultsClicked()
QtHost::QueueSettingsSave();
}
g_emu_thread->applySettings();
// reload all settings
switchProfile({});
}