fix MCP Cancel button "escape" action
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 12 Jun 2016 12:43:24 +0000 (08:43 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 12 Jun 2016 12:43:24 +0000 (08:43 -0400)
libs/surfaces/mackie/mcp_buttons.cc

index be577674660dff3315324889ac89835ebde16eaa..7f869cd1dc44c627a46d8faca988ca276698124d 100644 (file)
@@ -794,7 +794,7 @@ MackieControlProtocol::cancel_press (Button &)
        if (main_modifier_state() & MODIFIER_SHIFT) {
                access_action ("Transport/ToggleExternalSync");
        } else {
-               access_action ("Editor/escape");
+               access_action ("Main/Escape");
        }
        return none;
 }