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

Tweaked the re-entrancy check on the PluginListComponent scan

This commit is contained in:
jules 2019-03-15 12:42:04 +00:00
parent 1c1232bfe7
commit b6f0b2d0aa

View file

@ -521,10 +521,10 @@ private:
if (timerReentrancyCheck)
return;
const ScopedValueSetter<bool> setter (timerReentrancyCheck, true);
if (pool == nullptr)
{
const ScopedValueSetter<bool> setter (timerReentrancyCheck, true);
if (doNextScan())
startTimer (20);
}