disambiguate trigger functions: stop_all_triggers -> trigger_stop_all

This commit is contained in:
Ben Loftis 2022-09-27 09:09:31 -05:00
parent 75ae0fd4b1
commit 1e283adb22
8 changed files with 10 additions and 10 deletions

View file

@ -579,9 +579,9 @@ CueMaster::event_handler (GdkEvent* ev)
case GDK_BUTTON_PRESS:
if (ev->button.button == 1) {
if (Keyboard::modifier_state_equals (ev->button.state, Keyboard::PrimaryModifier)) {
_session->stop_all_triggers (true); //stop 'now'
_session->trigger_stop_all (true); //stop 'now'
} else {
_session->stop_all_triggers (false); //stop quantized (bar end)
_session->trigger_stop_all (false); //stop quantized (bar end)
}
return true;
}