DolphinQt: Fix TAS widgets not updating with enable controller input

This regressed in 0300b44d23. Specifically, the sliders and the stick/IR widgets did not update, but the spin boxes did update.
This commit is contained in:
Pokechu22 2023-03-12 17:58:48 -07:00
parent 019bde6afc
commit 3f6b931150

View File

@ -28,6 +28,5 @@ void TASSpinBox::OnUIValueChanged(int new_value)
void TASSpinBox::ApplyControllerValueChange()
{
const QSignalBlocker blocker(this);
setValue(m_state.ApplyControllerValueChange());
}