diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index 1999604..a4a356c 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -388,6 +388,7 @@ String juceversiontxt = String("JUCE ") + String(JUCE_MAJOR_VERSION) + "." + Str if (r == 7) { toggleBool(processor.m_show_technical_info); + processor.m_propsfile->m_props_file->setValue("showtechnicalinfo", processor.m_show_technical_info); } } diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index daa5664..b526ea9 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -147,6 +147,7 @@ PaulstretchpluginAudioProcessor::PaulstretchpluginAudioProcessor() m_reset_pars.push_back(p->getValue()); setPreBufferAmount(2); startTimer(1, 50); + m_show_technical_info = m_propsfile->m_props_file->getBoolValue("showtechnicalinfo", false); } PaulstretchpluginAudioProcessor::~PaulstretchpluginAudioProcessor()