Cleanup Track Automation kids

Send levels are dedicated to each send (Processor), and
not route-owned direct child automation for each time-axis.
This commit is contained in:
Robin Gareus 2022-10-11 03:25:06 +02:00
parent afd23d42cd
commit 8113633bb9
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 0 additions and 6 deletions

View File

@ -192,11 +192,6 @@ AudioTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool
create_gain_automation_child (param, show);
} else if (param.type() == BusSendLevel) {
// XXX this does not seem correct
create_trim_automation_child (param, show);
} else if (param.type() == TrimAutomation) {
create_trim_automation_child (param, show);

View File

@ -1352,7 +1352,6 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool
switch (param.type()) {
case GainAutomation:
case BusSendLevel:
create_gain_automation_child (param, show);
break;