From beafe2be6e7acf3735bf73a94e4e11d275714656 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 12 Jun 2016 08:43:24 -0400 Subject: [PATCH] fix MCP Cancel button "escape" action --- libs/surfaces/mackie/mcp_buttons.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/surfaces/mackie/mcp_buttons.cc b/libs/surfaces/mackie/mcp_buttons.cc index be57767466..7f869cd1dc 100644 --- a/libs/surfaces/mackie/mcp_buttons.cc +++ b/libs/surfaces/mackie/mcp_buttons.cc @@ -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; }