added output recording feature. moved settings to a separate popup panel instead of a menu

This commit is contained in:
essej
2022-06-14 19:11:57 -04:00
parent aff633ff39
commit af5efd8b09
21 changed files with 3309 additions and 263 deletions

View File

@ -327,7 +327,7 @@ public:
settings->setValue ("audioSetup", xml.get());
#if ! (JUCE_IOS || JUCE_ANDROID)
settings->setValue ("shouldMuteInput", (bool) shouldMuteInput.getValue());
// settings->setValue ("shouldMuteInput", (bool) shouldMuteInput.getValue());
#endif
}
}
@ -343,7 +343,7 @@ public:
savedState = settings->getXmlValue ("audioSetup");
#if ! (JUCE_IOS || JUCE_ANDROID)
shouldMuteInput.setValue (settings->getBoolValue ("shouldMuteInput", true));
// shouldMuteInput.setValue (settings->getBoolValue ("shouldMuteInput", true));
#endif
}