X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fmonitor_processor.cc;h=e5c58009af764fccd9b0f6e3302039ca8e8b4779;hb=7eb2d1d16de5d52175485bdd1a6acc53019fdb22;hp=c7a79ee2f533b9993ea44bafc3196d6b51533ff2;hpb=6d343ba3c607f5210ae03edb17ba51d662c7f79b;p=ardour.git diff --git a/libs/ardour/monitor_processor.cc b/libs/ardour/monitor_processor.cc index c7a79ee2f5..e5c58009af 100644 --- a/libs/ardour/monitor_processor.cc +++ b/libs/ardour/monitor_processor.cc @@ -37,11 +37,11 @@ using namespace std; /* specialize for bool because of set_value() semantics */ namespace ARDOUR { - template<> void MPControl::set_value (double v, PBD::Controllable::GroupControlDisposition /*group_override*/) { + template<> void MPControl::set_value (double v, PBD::Controllable::GroupControlDisposition gcd) { bool newval = fabs (v) >= 0.5; if (newval != _value) { _value = newval; - Changed(); /* EMIT SIGNAL */ + Changed (true, gcd); /* EMIT SIGNAL */ } } }