v0.4.3 ! Only a bugfix on JSON import.

This commit is contained in:
Zukero
2016-01-01 22:59:20 +01:00
parent ed004f5cfc
commit f924c481f8
6 changed files with 7 additions and 7 deletions

View File

@@ -754,13 +754,13 @@ public class Project implements ProjectTreeNode, Serializable {
}
existingNode.getBacklinks().clear();
node.writable = true;
node.state = GameDataElement.State.created;
alteredContent.gameData.addElement(node);
node.link();
node.state = GameDataElement.State.created;
} else {
createdContent.gameData.addElement(node);
node.state = GameDataElement.State.created;
node.link();
node.state = GameDataElement.State.created;
}
fireElementAdded(node, getNodeIndex(node));
}