mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 12:46:32 +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()) {
|
if (pos.positive() || pos.zero()) {
|
||||||
locate (pos.samples());
|
locate (pos.samples());
|
||||||
} else {
|
} else {
|
||||||
_session->goto_start ();
|
goto_start ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ TranzportControlProtocol::prev_marker ()
|
||||||
locate (location->start());
|
locate (location->start());
|
||||||
notify(location->name().c_str());
|
notify(location->name().c_str());
|
||||||
} else {
|
} else {
|
||||||
session->goto_start ();
|
goto_start ();
|
||||||
notify("START");
|
notify("START");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue