wfd-vue icon indicating copy to clipboard operation
wfd-vue copied to clipboard

拖动画布,添加节点到画布左侧失败

Open wiserliu opened this issue 3 years ago • 2 comments

拖动画布,添加节点到画布左侧失败 image

wiserliu avatar Mar 12 '21 07:03 wiserliu

这是项目给出的示例

wiserliu avatar Mar 12 '21 07:03 wiserliu

在dragPanelItemAddNode.js 中有这么一段代码

onMouseUp (e) {
  if (this.graph.get('addNodeDragging')) {
    const p = this.graph.getPointByClient(e.clientX, e.clientY);
    ......
  }
},

这样写可以避免这种情况

const p = this.graph.getPointByClient(e.clientX, e.clientY);
const { x, y } = this.graph.getCanvasByPoint(p.x, p.y);

zhanghui-space avatar May 06 '22 03:05 zhanghui-space