mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
fix action names in Mackie code after Editor=>Control migration
This commit is contained in:
parent
220fbbe0d8
commit
41aaee6fe9
1 changed files with 5 additions and 5 deletions
|
|
@ -364,7 +364,7 @@ MackieControlProtocol::drop_press (Button &)
|
||||||
toggle_punch_in();
|
toggle_punch_in();
|
||||||
return none;
|
return none;
|
||||||
} else {
|
} else {
|
||||||
access_action ("Editor/start-range-from-playhead");
|
access_action ("Common/start-range-from-playhead");
|
||||||
}
|
}
|
||||||
return none;
|
return none;
|
||||||
}
|
}
|
||||||
|
|
@ -565,7 +565,7 @@ LedState
|
||||||
MackieControlProtocol::loop_press (Button &)
|
MackieControlProtocol::loop_press (Button &)
|
||||||
{
|
{
|
||||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
access_action ("Editor/set-loop-from-edit-range");
|
access_action ("Common/set-loop-from-edit-range");
|
||||||
return off;
|
return off;
|
||||||
} else {
|
} else {
|
||||||
bool was_on = session->get_play_loop();
|
bool was_on = session->get_play_loop();
|
||||||
|
|
@ -883,7 +883,7 @@ MackieControlProtocol::clearsolo_press (Mackie::Button&)
|
||||||
// clears all solos and listens (pfl/afl)
|
// clears all solos and listens (pfl/afl)
|
||||||
|
|
||||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
access_action ("Editor/set-session-from-edit-range");
|
access_action ("Common/set-session-from-edit-range");
|
||||||
return none;
|
return none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1079,7 +1079,7 @@ MackieControlProtocol::replace_press (Mackie::Button&)
|
||||||
toggle_punch_out();
|
toggle_punch_out();
|
||||||
return none;
|
return none;
|
||||||
} else {
|
} else {
|
||||||
access_action ("Editor/finish-range-from-playhead");
|
access_action ("Common/finish-range-from-playhead");
|
||||||
}
|
}
|
||||||
return none;
|
return none;
|
||||||
}
|
}
|
||||||
|
|
@ -1092,7 +1092,7 @@ Mackie::LedState
|
||||||
MackieControlProtocol::click_press (Mackie::Button&)
|
MackieControlProtocol::click_press (Mackie::Button&)
|
||||||
{
|
{
|
||||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||||
access_action ("Editor/set-punch-from-edit-range");
|
access_action ("Common/set-punch-from-edit-range");
|
||||||
return off;
|
return off;
|
||||||
} else {
|
} else {
|
||||||
bool state = !Config->get_clicking();
|
bool state = !Config->get_clicking();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue