From 104a25fe0d2aec304d98ffe20b79e109fbdc13c0 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 24 Feb 2025 21:17:41 -0600 Subject: [PATCH] DolphinQt: Fix MappingButton not updating text on middle-click clear. --- Source/Core/DolphinQt/Config/Mapping/MappingCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingCommon.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingCommon.cpp index d94502b104..05dc5a3f79 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingCommon.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingCommon.cpp @@ -149,9 +149,9 @@ public: bool UnQueueInputDetection(MappingButton* button) { + button->ConfigChanged(); if (!std::erase(m_clicked_mapping_buttons, button)) return false; - button->ConfigChanged(); UpdateInputDetectionStartTimer(); return true; }