From 1ad19f9371ce359bf43c61eca27bffb96a16cd09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Thu, 14 Jul 2016 21:41:05 +0200 Subject: [PATCH] InputConfigDiag: Update GUI when config is reloaded This makes the GUI show the settings that are loaded when the config gets reloaded, instead of showing potentially outdated settings that are not applied. --- Source/Core/DolphinWX/InputConfigDiag.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinWX/InputConfigDiag.cpp b/Source/Core/DolphinWX/InputConfigDiag.cpp index a2ff75aced..d11c2b7db6 100644 --- a/Source/Core/DolphinWX/InputConfigDiag.cpp +++ b/Source/Core/DolphinWX/InputConfigDiag.cpp @@ -799,6 +799,8 @@ void GamepadPage::RefreshDevices(wxCommandEvent&) Pad::LoadConfig(); HotkeyManagerEmu::LoadConfig(); + UpdateGUI(); + Core::PauseAndLock(false, was_unpaused); }