From b60c1adbf3c66c42997020539f8bb8a0eb6250c9 Mon Sep 17 00:00:00 2001 From: cbdev Date: Fri, 22 Nov 2019 14:56:36 +0100 Subject: Update button control state on input not output --- backends/maweb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/maweb.c b/backends/maweb.c index 453dfa4..c495512 100644 --- a/backends/maweb.c +++ b/backends/maweb.c @@ -835,10 +835,10 @@ static int maweb_set(instance* inst, size_t num, channel** c, channel_value* v){ } chan->out = v[n].normalised; - //i/o value space separation - chan->in = v[n].normalised; + //i/o value space separation & feedback filtering for faders if(chan->type == exec_fader){ chan->input_blocked = 1; + chan->in = v[n].normalised; } switch(chan->type){ -- cgit v1.2.3