summaryrefslogtreecommitdiff
path: root/libs/ardour/control_protocol_manager.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-16 14:06:16 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-09-27 14:59:29 -0500
commit4991bf5a1a72720e2f91e2b9e91cfc034c384436 (patch)
treedff41b5c71fa10c3fcc70d2bb8e9f6ddd8740a1b /libs/ardour/control_protocol_manager.cc
parent96db13e1bad16b149d80ccbb11245d5cfa927f8c (diff)
push2: working bidirectional communication, some transport control/display (LED only); some scrolling
Diffstat (limited to 'libs/ardour/control_protocol_manager.cc')
-rw-r--r--libs/ardour/control_protocol_manager.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/control_protocol_manager.cc b/libs/ardour/control_protocol_manager.cc
index a0a36c17dd..b2c9153991 100644
--- a/libs/ardour/control_protocol_manager.cc
+++ b/libs/ardour/control_protocol_manager.cc
@@ -453,6 +453,8 @@ ControlProtocolManager::set_state (const XMLNode& node, int /*version*/)
delete cpi->state;
cpi->state = new XMLNode (**citer);
+ std::cerr << "protocol " << prop->value() << " active ? " << active << std::endl;
+
if (active) {
if (_session) {
instantiate (*cpi);
@@ -466,6 +468,8 @@ ControlProtocolManager::set_state (const XMLNode& node, int /*version*/)
cpi->requested = false;
}
}
+ } else {
+ std::cerr << "protocol " << prop->value() << " not found\n";
}
}
}