Temporarily fix segfault on show/hide all automation, pending a proper fix.
git-svn-id: svn://localhost/ardour2/branches/3.0@6501 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c22c3fc31e
commit
0c04eb8d83
@ -1679,7 +1679,9 @@ RouteTimeAxisView::show_all_automation ()
|
||||
i->second->track->set_marked_for_display (true);
|
||||
i->second->track->canvas_display()->show();
|
||||
i->second->track->get_state_node()->add_property ("shown", X_("yes"));
|
||||
i->second->menu_item->set_active(true);
|
||||
if (i->second->menu_item) {
|
||||
i->second->menu_item->set_active(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1746,7 +1748,9 @@ RouteTimeAxisView::hide_all_automation ()
|
||||
i->second->track->set_marked_for_display (false);
|
||||
i->second->track->hide ();
|
||||
i->second->track->get_state_node()->add_property ("shown", X_("no"));
|
||||
i->second->menu_item->set_active (false);
|
||||
if (i->second->menu_item) {
|
||||
i->second->menu_item->set_active (false);
|
||||
}
|
||||
}
|
||||
|
||||
/* Hide processor automation */
|
||||
|
Loading…
Reference in New Issue
Block a user