define new actions for stopping triggers/slots

This commit is contained in:
Paul Davis 2022-12-10 10:33:39 -07:00
parent c2c23172bd
commit 303f838a53
3 changed files with 19 additions and 0 deletions

View file

@ -3137,4 +3137,15 @@ ARDOUR_UI::trigger_cue_row (int r)
_basic_ui->trigger_cue_row (r);
}
void
ARDOUR_UI::stop_all_cues (bool immediately)
{
_basic_ui->trigger_stop_all (immediately);
}
void
ARDOUR_UI::stop_cues (int col, bool immediately)
{
_basic_ui->trigger_stop_col (col, immediately);
}