Commit cb3b550b authored by Akikonata's avatar Akikonata

test

parent 6a811fe9
Subproject commit 682bc4b4200af7a7c4997758307bc9b1b6e4e291 Subproject commit 8b33f729a570f3501769d16ad4c329c0e7f4e08d
...@@ -419,9 +419,9 @@ KityMinder.registerModule( "LayoutDefault", function () { ...@@ -419,9 +419,9 @@ KityMinder.registerModule( "LayoutDefault", function () {
drawNode( node ); drawNode( node );
}, },
initStyle: function () { initStyle: function () {
minder.getRenderContainer().clear();
//绘制root并且调整到正确位置 //绘制root并且调整到正确位置
var _root = this.getRoot(); var _root = this.getRoot();
minder.getRenderContainer().clear();
minder.handelNodeInsert( _root ); minder.handelNodeInsert( _root );
var rc = new RootShape( _root ); var rc = new RootShape( _root );
translateNode( _root ); translateNode( _root );
......
This diff is collapsed.
...@@ -70,11 +70,9 @@ KityMinder.registerModule( "LayoutModule", function () { ...@@ -70,11 +70,9 @@ KityMinder.registerModule( "LayoutModule", function () {
} ); } );
var switchLayout = function ( km, style ) { var switchLayout = function ( km, style ) {
var _root = km.getRoot(); var _root = km.getRoot();
km.getRenderContainer().clear();
_root.preTraverse( function ( n ) { _root.preTraverse( function ( n ) {
n.clearLayout(); n.clearLayout();
n.setPoint(); n.setPoint();
n.getRenderContainer().clear();
} ); } );
km.setCurrentStyle( style ); km.setCurrentStyle( style );
km.initStyle(); km.initStyle();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment