MCP: more mute button debug tracing; fix action for fn keys

git-svn-id: svn://localhost/ardour2/branches/3.0@11910 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-11 17:34:04 +00:00
parent 220095b8e0
commit 21f038c280
2 changed files with 3 additions and 1 deletions

View file

@ -579,7 +579,7 @@ MackieControlProtocol::set_state (const XMLNode & node, int /*version*/)
if (action.empty()) { if (action.empty()) {
/* default action if nothing is specified */ /* default action if nothing is specified */
action = string_compose ("goto-visual-state-%1", n+1); action = string_compose ("Editor/goto-visual-state-%1", n+1);
} }
_f_actions[n] = action; _f_actions[n] = action;

View file

@ -340,7 +340,9 @@ Strip::notify_solo_changed ()
void void
Strip::notify_mute_changed () Strip::notify_mute_changed ()
{ {
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Strip %1 mute changed\n", _index));
if (_route && _mute) { if (_route && _mute) {
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("\troute muted ? %1\n", _route->muted()));
_surface->write (_mute->led().set_state (_route->muted() ? on : off)); _surface->write (_mute->led().set_state (_route->muted() ? on : off));
} }
} }