MCP: remove debugging related to selection that turned out to be about some JACK/IP MIDI layer

git-svn-id: svn://localhost/ardour2/branches/3.0@12071 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-24 02:41:07 +00:00
parent a9d77d1a70
commit 954b022e19

View File

@ -761,13 +761,11 @@ Strip::gui_selection_changed (ARDOUR::RouteNotificationListPtr rl)
{
for (ARDOUR::RouteNotificationList::iterator i = rl->begin(); i != rl->end(); ++i) {
if ((*i) == _route) {
cerr << "Surface " << _surface->number() << "Strip " << _index << " found its route in the selection, turn button on\n";
_surface->write (_select->set_state (on));
return;
}
}
cerr << "Surface " << _surface->number() << "Strip " << _index << " did NOT find its route in the selection, turn button OFF\n";
_surface->write (_select->set_state (off));
}