@@ -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