- Fix wrong state issue when the topic is restored.

This commit is contained in:
Paulo Gustavo Veiga
2012-09-27 20:18:12 -03:00
parent f6e5018272
commit 1e5e11a309
4 changed files with 12 additions and 13 deletions

View File

@@ -269,8 +269,8 @@ mindplot.CommandContext = new Class({
return mindmap.createNode(mindplot.NodeModel.MAIN_TOPIC_TYPE);
},
connect:function (childTopic, parentTopic, isVisible) {
childTopic.connectTo(parentTopic, this._designer._workspace, isVisible);
connect:function (childTopic, parentTopic) {
childTopic.connectTo(parentTopic, this._designer._workspace);
},
disconnect:function (topic) {