diff --git a/plugins/editor/src/editor/Editor.cpp b/plugins/editor/src/editor/Editor.cpp index 9f6407ef..71ae9d20 100644 --- a/plugins/editor/src/editor/Editor.cpp +++ b/plugins/editor/src/editor/Editor.cpp @@ -1515,8 +1515,10 @@ void Editor::Impl::updateCCValue(unsigned cc, float value) if (SControlsPanel* panel = controlsPanel_) panel->setControlValue(cc, value); - if (CControl* other = getSecondaryCCControl(cc)) + if (CControl* other = getSecondaryCCControl(cc)) { other->setValue(value); + other->invalid(); + } } void Editor::Impl::updateCCDefaultValue(unsigned cc, float value)