diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index b6f9ef4..acb0f47 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -352,8 +352,6 @@ WaveformComponent::WaveformComponent(AudioFormatManager* afm, AudioThumbnail* th TimeSelectionChangedCallback = [](Range, int) {}; if (m_use_opengl == true) m_ogl.attachTo(*this); - // The default priority of 2 is a bit too low in some cases, it seems... - //m_thumbcache->getTimeSliceThread().setPriority(3); m_thumbnail = thumb; m_thumbnail->addChangeListener(this); setOpaque(true); diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 4e8d9ab..14bdfe1 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -96,7 +96,8 @@ PaulstretchpluginAudioProcessor::PaulstretchpluginAudioProcessor() if (m_afm->getNumKnownFormats()==0) m_afm->registerBasicFormats(); m_thumb = std::make_unique(512, *m_afm, *m_thumbcache); - //m_thumb->addChangeListener(this); + // The default priority of 2 is a bit too low in some cases, it seems... + m_thumbcache->getTimeSliceThread().setPriority(3); m_stretch_source = std::make_unique(2, m_afm); diff --git a/readme.txt b/readme.txt index 768cb48..a9f36c3 100644 --- a/readme.txt +++ b/readme.txt @@ -44,7 +44,7 @@ History : provide the file name of the source of audio file, so audio clip/event/item specific audio won't be imported) -Removed an unnecessary level of buffering (doesn't reduce latency but should help a bit with CPU usage) -Added About window -01-17-2018 1.0.0 preview 5 - -Restored ability to set capture buffer length +01-20-2018 1.0.0 preview 5 + -Restored ability to set capture buffer length (via the settings menu) -Seek to play range beginning when audio file imported -Fixes to waveform display issues