Foldback bus should not appear in editor
authorLen Ovens <len@ovenwerks.net>
Tue, 27 Aug 2019 02:01:19 +0000 (19:01 -0700)
committerLen Ovens <len@ovenwerks.net>
Tue, 27 Aug 2019 02:01:19 +0000 (19:01 -0700)
gtk2_ardour/editor.cc

index 8673593392a19795b5380934746d850a1ae5ad77..baffa11b8edbc9a948e5314796c98f36598fb19a 100644 (file)
@@ -5472,6 +5472,10 @@ Editor::add_stripables (StripableList& sl)
 
        for (StripableList::iterator s = sl.begin(); s != sl.end(); ++s) {
 
+               if ((*s)->is_foldbackbus()) {
+                       continue;
+               }
+
                if ((v = boost::dynamic_pointer_cast<VCA> (*s)) != 0) {
 
                        VCATimeAxisView* vtv = new VCATimeAxisView (*this, _session, *_track_canvas);