13
0

LT: hide the master bus in the track view

This commit is contained in:
Ben Loftis 2024-05-02 09:14:19 -05:00
parent ef6c1ce751
commit 14252a1c2c

View File

@ -6016,6 +6016,12 @@ Editor::add_stripables (StripableList& sl)
continue;
}
#ifdef LIVETRAX
if ((*s)->is_master()) {
continue;
}
#endif
if ((v = std::dynamic_pointer_cast<VCA> (*s)) != 0) {
VCATimeAxisView* vtv = new VCATimeAxisView (*this, _session, *_track_canvas);