Skip to content

Commit

Permalink
Do not save VCA automation in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Jan 3, 2025
1 parent f72fd08 commit a0413c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/ardour/vca.cc
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ VCA::get_state () const
node->add_child_nocopy (_gain_control->get_state());
node->add_child_nocopy (_solo_control->get_state());
node->add_child_nocopy (_mute_control->get_state());
node->add_child_nocopy (get_automation_xml_state());

if (!skip_saving_automation) {
node->add_child_nocopy (get_automation_xml_state());
}

node->add_child_nocopy (Slavable::get_state());

Expand Down

0 comments on commit a0413c5

Please sign in to comment.