properly remove foldback strip so it can be created again

This commit is contained in:
Len Ovens 2019-08-28 13:22:24 -07:00
parent 1d4cf8a28c
commit 3588712174
2 changed files with 15 additions and 1 deletions

View File

@ -365,6 +365,7 @@ Mixer_UI::Mixer_UI ()
MixerStrip::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::remove_strip, this, _1), gui_context());
VCAMasterStrip::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::remove_master, this, _1), gui_context());
FoldbackStrip::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::remove_foldback, this, _1), gui_context());
/* handle escape */
@ -740,6 +741,19 @@ Mixer_UI::remove_strip (MixerStrip* strip)
}
}
void
Mixer_UI::remove_foldback (FoldbackStrip* strip)
{
if (_session && _session->deletion_in_progress()) {
/* its all being taken care of */
return;
}
if (foldback_strip) {
foldback_strip->destroy_();
}
foldback_strip = 0;
}
void
Mixer_UI::presentation_info_changed (PropertyChange const & what_changed)
{

View File

@ -219,7 +219,7 @@ private:
void add_routes (ARDOUR::RouteList&);
void remove_strip (MixerStrip *);
void remove_foldback (FoldbackStrip *);
void add_masters (ARDOUR::VCAList&);
void remove_master (VCAMasterStrip*);
void new_masters_created ();