1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed listener bug in AudioPluginHost

This commit is contained in:
Noah Dayan 2018-03-23 09:58:19 +00:00
parent 8a467e7dc3
commit c610745ee3

View file

@ -49,7 +49,7 @@ FilterGraph::FilterGraph (AudioPluginFormatManager& fm)
FilterGraph::~FilterGraph()
{
graph.addListener (this);
graph.removeListener (this);
graph.removeChangeListener (this);
graph.clear();
}