Replace direct use of Session::goto_start() in surfaces

This commit is contained in:
David Robillard 2021-06-15 19:59:12 -04:00
parent 7b73f006a6
commit 585e8173f9
2 changed files with 2 additions and 2 deletions

View file

@ -564,7 +564,7 @@ ContourDesignControlProtocol::prev_marker_keep_rolling ()
if (pos.positive() || pos.zero()) {
locate (pos.samples());
} else {
_session->goto_start ();
goto_start ();
}
}

View file

@ -187,7 +187,7 @@ TranzportControlProtocol::prev_marker ()
locate (location->start());
notify(location->name().c_str());
} else {
session->goto_start ();
goto_start ();
notify("START");
}