- Remove visibility flag on createTopic.

This commit is contained in:
Paulo Gustavo Veiga
2012-09-27 09:17:34 -03:00
parent 4a0d70e3b3
commit f6e5018272
4 changed files with 7 additions and 12 deletions

View File

@@ -259,9 +259,9 @@ mindplot.CommandContext = new Class({
this._designer._removeTopic(topic);
},
createTopic:function (model, isVisible) {
createTopic:function (model) {
$assert(model, "model can not be null");
return this._designer._nodeModelToNodeGraph(model, isVisible);
return this._designer._nodeModelToNodeGraph(model);
},
createModel:function () {