Add file menu option to export uncompressed json file

This commit is contained in:
falkTX 2022-02-05 01:09:16 +00:00
parent 49c7d32727
commit 454943f2cf
5 changed files with 49 additions and 6 deletions

View file

@ -142,6 +142,7 @@ class CardinalBaseUI : public UI {
public:
CardinalPluginContext* const context;
bool saving;
bool savingUncompressed;
// for 3rd party modules
std::function<void(char* path)> filebrowseraction;
@ -151,6 +152,7 @@ public:
: UI(width, height),
context(getRackContextFromPlugin(getPluginInstancePointer())),
saving(false),
savingUncompressed(false),
filebrowseraction(),
filebrowserhandle(nullptr)
{