mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
mackie surface support changes actions recently moved to Common/*
This commit is contained in:
parent
8c7b0d1486
commit
390ce9bc4f
1 changed files with 3 additions and 3 deletions
|
|
@ -425,7 +425,7 @@ LedState
|
||||||
MackieControlProtocol::marker_press (Button &)
|
MackieControlProtocol::marker_press (Button &)
|
||||||
{
|
{
|
||||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
access_action ("Editor/remove-location-from-playhead");
|
access_action ("Common/remove-location-from-playhead");
|
||||||
return off;
|
return off;
|
||||||
} else {
|
} else {
|
||||||
_modifier_state |= MODIFIER_MARKER;
|
_modifier_state |= MODIFIER_MARKER;
|
||||||
|
|
@ -525,7 +525,7 @@ MackieControlProtocol::rewind_press (Button &)
|
||||||
if (modifier_state() & MODIFIER_MARKER) {
|
if (modifier_state() & MODIFIER_MARKER) {
|
||||||
prev_marker ();
|
prev_marker ();
|
||||||
} else if (modifier_state() & MODIFIER_NUDGE) {
|
} else if (modifier_state() & MODIFIER_NUDGE) {
|
||||||
access_action ("Editor/nudge-playhead-backward");
|
access_action ("Common/nudge-playhead-backward");
|
||||||
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
goto_start ();
|
goto_start ();
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -546,7 +546,7 @@ MackieControlProtocol::ffwd_press (Button &)
|
||||||
if (modifier_state() & MODIFIER_MARKER) {
|
if (modifier_state() & MODIFIER_MARKER) {
|
||||||
next_marker ();
|
next_marker ();
|
||||||
} else if (modifier_state() & MODIFIER_NUDGE) {
|
} else if (modifier_state() & MODIFIER_NUDGE) {
|
||||||
access_action ("Editor/nudge-playhead-forward");
|
access_action ("Common/nudge-playhead-forward");
|
||||||
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
} else if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
goto_end();
|
goto_end();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue