mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
Replace direct use of Session::goto_start() in surfaces
This commit is contained in:
parent
7b73f006a6
commit
585e8173f9
2 changed files with 2 additions and 2 deletions
|
|
@ -564,7 +564,7 @@ ContourDesignControlProtocol::prev_marker_keep_rolling ()
|
|||
if (pos.positive() || pos.zero()) {
|
||||
locate (pos.samples());
|
||||
} else {
|
||||
_session->goto_start ();
|
||||
goto_start ();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ TranzportControlProtocol::prev_marker ()
|
|||
locate (location->start());
|
||||
notify(location->name().c_str());
|
||||
} else {
|
||||
session->goto_start ();
|
||||
goto_start ();
|
||||
notify("START");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue