mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 09:57:44 +01:00
remove destructive/tape mode tracks
This commit is contained in:
parent
e89b0cfd27
commit
a4d7b45fe0
53 changed files with 114 additions and 1152 deletions
|
|
@ -1074,7 +1074,7 @@ RouteTimeAxisView::rename_current_playlist ()
|
|||
string name;
|
||||
|
||||
boost::shared_ptr<Track> tr = track();
|
||||
if (!tr || tr->destructive()) {
|
||||
if (!tr) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1148,7 +1148,7 @@ RouteTimeAxisView::use_new_playlist (bool prompt, vector<boost::shared_ptr<Playl
|
|||
string name;
|
||||
|
||||
boost::shared_ptr<Track> tr = track ();
|
||||
if (!tr || tr->destructive()) {
|
||||
if (!tr) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1216,7 +1216,7 @@ void
|
|||
RouteTimeAxisView::clear_playlist ()
|
||||
{
|
||||
boost::shared_ptr<Track> tr = track ();
|
||||
if (!tr || tr->destructive()) {
|
||||
if (!tr) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue