summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-02-25 21:35:07 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-03-17 16:31:49 -0600
commita4d7b45fe00996fd37a1af6d5be8c913a0b3bbf4 (patch)
tree35463bfb8a0b7def08b254378873305b7d0f1aa0 /gtk2_ardour/route_time_axis.cc
parente89b0cfd27be8dc8ea8099d624adb999d957fa3e (diff)
remove destructive/tape mode tracks
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 4a723ba16e..60b4978462 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -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;
}