From 6a0797fde5f2a01ed30183c7f85c45a00e1565a3 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 17 Jun 2019 10:46:18 -0400 Subject: [PATCH] Remove behavior of Knob triggering an Action event if the value has not changed. --- src/app/Knob.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app/Knob.cpp b/src/app/Knob.cpp index a129d905..b0f2a63d 100644 --- a/src/app/Knob.cpp +++ b/src/app/Knob.cpp @@ -60,11 +60,6 @@ void Knob::onDragEnd(const event::DragEnd &e) { h->newValue = newValue; APP->history->push(h); } - else { - // Call Action if knob was not changed - event::Action eAction; - onAction(eAction); - } } }