13
0

MCP: debug continues

git-svn-id: svn://localhost/ardour2/branches/3.0@11927 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-12 00:27:25 +00:00
parent 1aa8baf6f9
commit d5a5c66d46
2 changed files with 4 additions and 2 deletions

View File

@ -229,7 +229,7 @@ MackieControlProtocol::cursor_up_press (Button&)
{ {
if (_zoom_mode) { if (_zoom_mode) {
if (_modifier_state & MODIFIER_OPTION) { if (_modifier_state & MODIFIER_CONTROL) {
VerticalZoomInSelected (); /* EMIT SIGNAL */ VerticalZoomInSelected (); /* EMIT SIGNAL */
} else { } else {
VerticalZoomInAll (); /* EMIT SIGNAL */ VerticalZoomInAll (); /* EMIT SIGNAL */

View File

@ -259,7 +259,7 @@ Strip::notify_route_deleted ()
void void
Strip::notify_gain_changed (bool force_update) Strip::notify_gain_changed (bool force_update)
{ {
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("gain changed for strip %1, flip mode\n", _index, _surface->mcp().flip_mode())); DEBUG_TRACE (DEBUG::MackieControl, string_compose ("gain changed for strip %1, flip mode %2\n", _index, _surface->mcp().flip_mode()));
if (_route && _fader) { if (_route && _fader) {
@ -292,6 +292,8 @@ Strip::notify_gain_changed (bool force_update)
} else { } else {
DEBUG_TRACE (DEBUG::MackieControl, "fader in use, no message sent\n"); DEBUG_TRACE (DEBUG::MackieControl, "fader in use, no message sent\n");
} }
} else {
DEBUG_TRACE (DEBUG::MackieControl, "no route or no fader\n");
} }
} }