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