summaryrefslogtreecommitdiff
path: root/libs/pbd/controllable.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-18 23:54:41 +0000
committerDavid Robillard <d@drobilla.net>2009-02-18 23:54:41 +0000
commitcbb59ddbce3f53798e83f5a88b3f38fa3a713592 (patch)
treee2482a0c1a82c66053adacf67b90dcca4bbc58fb /libs/pbd/controllable.cc
parent9cfa3e2bf6eeaa07a3a0b87e711921f7d07ae97a (diff)
Fix 'sticky' sliders when MIDI control feedback is enabled.
git-svn-id: svn://localhost/ardour2/branches/3.0@4628 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/controllable.cc')
-rw-r--r--libs/pbd/controllable.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/pbd/controllable.cc b/libs/pbd/controllable.cc
index c79e0cb3d8..4788965c97 100644
--- a/libs/pbd/controllable.cc
+++ b/libs/pbd/controllable.cc
@@ -36,6 +36,7 @@ Controllable::Controllables Controllable::registry;
Controllable::Controllable (std::string name)
: _name (name)
+ , _touching (false)
{
if (registry_lock == 0) {
registry_lock = new Glib::Mutex;