actally stop doing clip recording visual stuff when disarmed (libs)
This commit is contained in:
parent
a1643573be
commit
837ea32898
@ -303,6 +303,7 @@ Trigger::disarm ()
|
|||||||
_box.disarm ();
|
_box.disarm ();
|
||||||
_armed = false;
|
_armed = false;
|
||||||
ArmChanged(); /* EMIT SIGNAL */
|
ArmChanged(); /* EMIT SIGNAL */
|
||||||
|
TriggerArmChanged (this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -5427,6 +5428,10 @@ TriggerBox::realtime_handle_transport_stopped ()
|
|||||||
Processor::realtime_handle_transport_stopped ();
|
Processor::realtime_handle_transport_stopped ();
|
||||||
stop_all ();
|
stop_all ();
|
||||||
_currently_playing = 0;
|
_currently_playing = 0;
|
||||||
|
|
||||||
|
for (auto & trig : all_triggers) {
|
||||||
|
trig->disarm ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user