Add file menu option to export uncompressed json file
This commit is contained in:
parent
49c7d32727
commit
454943f2cf
5 changed files with 49 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue