From 3f6b9311503237eba87d281f8316553b6603a833 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 12 Mar 2023 17:58:48 -0700 Subject: [PATCH] DolphinQt: Fix TAS widgets not updating with enable controller input This regressed in 0300b44d23b149a0b93dd0aa2e77d20a02882ddf. Specifically, the sliders and the stick/IR widgets did not update, but the spin boxes did update. --- Source/Core/DolphinQt/TAS/TASSpinBox.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/DolphinQt/TAS/TASSpinBox.cpp b/Source/Core/DolphinQt/TAS/TASSpinBox.cpp index 8621656050..8c473bb9b3 100644 --- a/Source/Core/DolphinQt/TAS/TASSpinBox.cpp +++ b/Source/Core/DolphinQt/TAS/TASSpinBox.cpp @@ -28,6 +28,5 @@ void TASSpinBox::OnUIValueChanged(int new_value) void TASSpinBox::ApplyControllerValueChange() { - const QSignalBlocker blocker(this); setValue(m_state.ApplyControllerValueChange()); }