From 64fd7a751170472c73c2eaf80ba5ff68d3260105 Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Mon, 26 Aug 2019 19:01:19 -0700 Subject: [PATCH] Foldback bus should not appear in editor --- gtk2_ardour/editor.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 8673593392..baffa11b8e 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -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 (*s)) != 0) { VCATimeAxisView* vtv = new VCATimeAxisView (*this, _session, *_track_canvas);