diff --git a/Source/PluginEditor.h b/Source/PluginEditor.h index e69a28f..5f64d0a 100644 --- a/Source/PluginEditor.h +++ b/Source/PluginEditor.h @@ -86,7 +86,7 @@ public: class MyThumbCache : public AudioThumbnailCache { public: - MyThumbCache() : AudioThumbnailCache(100) { /*Logger::writeToLog("Constructed AudioThumbNailCache");*/ } + MyThumbCache() : AudioThumbnailCache(200) { /*Logger::writeToLog("Constructed AudioThumbNailCache");*/ } ~MyThumbCache() { /*Logger::writeToLog("Destructed AudioThumbNailCache");*/ } }; diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index 756da0f..35e22b3 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -65,15 +65,15 @@ public: PropertiesFile::Options poptions; poptions.applicationName = "PaulXStretch3"; - poptions.folderName = "PaulXStretch3"; - poptions.commonToAllUsers = false; - poptions.doNotSave = false; - poptions.storageFormat = PropertiesFile::storeAsXML; - poptions.millisecondsBeforeSaving = 1000; - poptions.ignoreCaseOfKeyNames = false; - poptions.processLock = nullptr; - poptions.filenameSuffix = ".xml"; - poptions.osxLibrarySubFolder = "Application Support"; + poptions.folderName = "PaulXStretch3"; + poptions.commonToAllUsers = false; + poptions.doNotSave = false; + poptions.storageFormat = PropertiesFile::storeAsXML; + poptions.millisecondsBeforeSaving = 1000; + poptions.ignoreCaseOfKeyNames = false; + poptions.processLock = nullptr; + poptions.filenameSuffix = ".xml"; + poptions.osxLibrarySubFolder = "Application Support"; m_props_file = std::make_unique(poptions); }