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

AU latency change notification. Minor tweaks to plugin hosting.

This commit is contained in:
jules 2012-12-15 17:23:39 +00:00
parent 9ca3ab9454
commit 66769a191b
3 changed files with 8 additions and 1 deletions

View file

@ -564,7 +564,7 @@ public:
void audioProcessorChanged (AudioProcessor*)
{
// xxx is there an AU equivalent?
PropertyChanged (kAudioUnitProperty_Latency, kAudioUnitScope_Global, 0);
}
bool StreamFormatWritable (AudioUnitScope, AudioUnitElement)

View file

@ -260,9 +260,14 @@ private:
aw.setMessage (TRANS("Testing:\n\n") + scanner.getNextPluginFileThatWillBeScanned());
if (scanner.scanNextFile (true) && aw.isCurrentlyModal())
{
progress = scanner.getProgress();
startTimer (20);
}
else
{
owner.scanFinished (scanner.getFailedFiles());
}
}
PluginListComponent& owner;