Commit 7d2f62b9 authored by Akikonata's avatar Akikonata

fixed position bug

parent bcb30470
......@@ -191,7 +191,10 @@ KityMinder.registerModule("LayoutDefault", function () {
break;
}
var rBox = contRc.getRenderBox();
contRc.setTranslate(nodeStyle.padding[3], nodeStyle.padding[0] - rBox.top);
// contRc.setTranslate(nodeStyle.padding[3], nodeStyle.padding[0] - rBox.top);
// Todo:很坑的改法,不知为何就对了,需要处理
contRc.setTranslate(nodeStyle.padding[3], 0);
contRc.translate(0, nodeStyle.padding[0] - rBox.top);
};
//计算节点在垂直方向的位置
var updateLayoutVertical = function (node, parent, action) {
......@@ -431,20 +434,6 @@ KityMinder.registerModule("LayoutDefault", function () {
}
};
// var showNodeInView = function ( node ) {
// // var padding = 5;
// // var viewport = minder.getPaper().getViewPort();
// // var offset = node.getRenderContainer().getRenderBox( minder.getRenderContainer() );
// // var tmpX = viewport.center.x * 2 - ( offset.x + offset.width );
// // var tmpY = viewport.center.y * 2 - ( offset.y + offset.height );
// // var dx = offset.x < 0 ? -offset.x : Math.min( tmpX, 0 );
// // var dy = offset.y < 0 ? -offset.y : Math.min( tmpY, 0 );
// // minder.getRenderContainer().fxTranslate( dx, dy, 100, "easeOutQuint" );
// };
var _style = {
getCurrentLayoutStyle: function () {
return nodeStyles;
......
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