mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix bindings not applying after profile load/reset
This commit is contained in:
parent
4040f7afca
commit
d9360a66af
|
@ -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({});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue