From 14252a1c2c48d58a07bc91678420b73ec98bd9d0 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 2 May 2024 09:14:19 -0500 Subject: [PATCH] LT: hide the master bus in the track view --- gtk2_ardour/editor.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 54be2bdad3..a33f442543 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -6016,6 +6016,12 @@ Editor::add_stripables (StripableList& sl) continue; } +#ifdef LIVETRAX + if ((*s)->is_master()) { + continue; + } +#endif + if ((v = std::dynamic_pointer_cast (*s)) != 0) { VCATimeAxisView* vtv = new VCATimeAxisView (*this, _session, *_track_canvas);