BasicUI: Add simple functions to store and recall Mixer Scenes

This commit is contained in:
Ben Loftis 2022-11-07 10:09:12 -06:00
parent 68dc07ecee
commit 0bda71b40b
2 changed files with 15 additions and 0 deletions

View file

@ -476,6 +476,18 @@ BasicUI::tbank_step_rows (int step_size)
}
}
void
BasicUI::store_mixer_scene (int idx)
{
session->store_nth_mixer_scene (idx);
}
void
BasicUI::apply_mixer_scene (int idx)
{
session->apply_nth_mixer_scene (idx);
}
void
BasicUI::undo ()
{