1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-19 01:04:20 +00:00

AudioProcessorGraph: now calls its superclass in response to setNonRealtime

This commit is contained in:
jules 2015-11-24 11:40:16 +00:00
parent 9f7eb07ce5
commit 5a43ea52e7

View file

@ -1410,6 +1410,8 @@ void AudioProcessorGraph::setNonRealtime (bool isProcessingNonRealtime) noexcept
{
const ScopedLock sl (getCallbackLock());
AudioProcessor::setNonRealtime (isProcessingNonRealtime);
for (int i = 0; i < nodes.size(); ++i)
nodes.getUnchecked(i)->getProcessor()->setNonRealtime (isProcessingNonRealtime);
}