From d9360a66af4b1ad7a02d5cc2e0f0f66468c6d8f7 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 24 Jul 2022 22:52:22 +1000 Subject: [PATCH] Qt: Fix bindings not applying after profile load/reset --- pcsx2-qt/Settings/ControllerSettingsDialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2-qt/Settings/ControllerSettingsDialog.cpp b/pcsx2-qt/Settings/ControllerSettingsDialog.cpp index c3914acbad..3577c57de6 100644 --- a/pcsx2-qt/Settings/ControllerSettingsDialog.cpp +++ b/pcsx2-qt/Settings/ControllerSettingsDialog.cpp @@ -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({}); }