ios file handling updates. restore editor window size. double-click group order toggles enabled.

This commit is contained in:
essej
2022-04-11 18:50:55 -04:00
parent 2084782a79
commit 300c89d2b2
7 changed files with 181 additions and 17 deletions

View File

@ -81,7 +81,18 @@ public:
const String getApplicationName() override { return JucePlugin_Name; }
const String getApplicationVersion() override { return JucePlugin_VersionString; }
bool moreThanOneInstanceAllowed() override { return true; }
void anotherInstanceStarted (const String&) override {}
void anotherInstanceStarted (const String& cmdline) override {
DBG("Another instance started: " << cmdline);
}
void urlOpened(const URL& url) override {
DBG("URL opened: " << url.toString(false));
if (mainWindow.get() != nullptr)
mainWindow->pluginHolder->urlOpened(url);
}
CustomLookAndFeel sonoLNF;