change API for BasicUI::goto_start() to use optional roll-after arg
This commit is contained in:
parent
38fbf3c302
commit
d7a16786fc
@ -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
|
||||
|
@ -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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user