Do not take context lock when loading patch via UI

This commit is contained in:
falkTX 2021-10-27 00:38:01 +01:00
parent 570f9f94a9
commit ad5429cfbb

View file

@ -491,7 +491,9 @@ protected:
if (filename == nullptr)
return;
const ScopedContext sc(this);
// we cannot lock here
// const ScopedContext sc(this);
rack::contextSet(fContext);
fContext->patch->loadAction(filename);
}