13
0

change API for BasicUI::goto_start() to use optional roll-after arg

This commit is contained in:
Paul Davis 2016-06-17 15:47:47 -04:00
parent 38fbf3c302
commit d7a16786fc
2 changed files with 3 additions and 3 deletions

View File

@ -121,9 +121,9 @@ BasicUI::loop_location (framepos_t start, framepos_t end)
}
void
BasicUI::goto_start ()
BasicUI::goto_start (bool and_roll)
{
session->goto_start ();
session->goto_start (and_roll);
}
void

View File

@ -59,7 +59,7 @@ class LIBCONTROLCP_API BasicUI {
void access_action ( std::string action_path );
static PBD::Signal2<void,std::string,std::string> AccessAction;
void goto_zero ();
void goto_start ();
void goto_start (bool and_roll = false);
void goto_end ();
void rewind ();
void ffwd ();