mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Mackie: shift+marker needs to remove marker. moved session-range to shift+solo.
Originally cbbd87f50b in mixbus/master
This commit is contained in:
parent
97f523d396
commit
09921e1d76
1 changed files with 6 additions and 1 deletions
|
|
@ -425,7 +425,7 @@ LedState
|
|||
MackieControlProtocol::marker_press (Button &)
|
||||
{
|
||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||
access_action ("Editor/set-session-from-edit-range");
|
||||
access_action ("Editor/remove-location-from-playhead");
|
||||
return off;
|
||||
} else {
|
||||
_modifier_state |= MODIFIER_MARKER;
|
||||
|
|
@ -884,6 +884,11 @@ MackieControlProtocol::clearsolo_press (Mackie::Button&)
|
|||
{
|
||||
// clears all solos and listens (pfl/afl)
|
||||
|
||||
if (main_modifier_state() & MODIFIER_SHIFT) {
|
||||
access_action ("Editor/set-session-from-edit-range");
|
||||
return none;
|
||||
}
|
||||
|
||||
if (session) {
|
||||
if (session->soloing()) {
|
||||
session->set_solo (session->get_routes(), false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue