mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 05:05:43 +01:00
fix mixup of input/output selectors after a mixer strip has its Route/IO reset
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3914 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ff52fa5602
commit
5097a849bb
1 changed files with 10 additions and 0 deletions
|
|
@ -309,6 +309,16 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
|
|||
|
||||
RouteUI::set_route (rt);
|
||||
|
||||
if (input_selector) {
|
||||
delete input_selector;
|
||||
input_selector = 0;
|
||||
}
|
||||
|
||||
if (output_selector) {
|
||||
delete output_selector;
|
||||
output_selector = 0;
|
||||
}
|
||||
|
||||
panners.set_io (rt);
|
||||
gpm.set_io (rt);
|
||||
pre_redirect_box.set_route (rt);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue