Skip to content

Commit c88144c

Browse files
committed
missing properties
1 parent c3a27b4 commit c88144c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Source/Heavy/OWLExporter.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ class OWLExporter : public ExporterBase {
5252
ValueTree getState() override
5353
{
5454
ValueTree stateTree("OWL");
55+
stateTree.setProperty("inputPatchValue", getValue<String>(inputPatchValue), nullptr);
56+
stateTree.setProperty("projectNameValue", getValue<String>(projectNameValue), nullptr);
57+
stateTree.setProperty("projectCopyrightValue", getValue<String>(projectCopyrightValue), nullptr);
5558
stateTree.setProperty("targetBoardValue", getValue<int>(targetBoardValue), nullptr);
5659
stateTree.setProperty("exportTypeValue", getValue<int>(exportTypeValue), nullptr);
5760
stateTree.setProperty("storeSlotValue", getValue<int>(storeSlotValue), nullptr);
@@ -61,6 +64,9 @@ class OWLExporter : public ExporterBase {
6164
void setState(ValueTree& stateTree) override
6265
{
6366
auto tree = stateTree.getChildWithName("OWL");
67+
inputPatchValue = tree.getProperty("inputPatchValue");
68+
projectNameValue = tree.getProperty("projectNameValue");
69+
projectCopyrightValue = tree.getProperty("projectCopyrightValue");
6470
targetBoardValue = tree.getProperty("targetBoardValue");
6571
exportTypeValue = tree.getProperty("exportTypeValue");
6672
storeSlotValue = tree.getProperty("storeSlotValue");

0 commit comments

Comments
 (0)