🐛 Fix issue that lastClickPosition ignored node view offset position

This commit is contained in:
Jan Oberhauser
2019-07-17 12:44:00 +02:00
parent 34c2975a9f
commit de3c52b355

View File

@@ -324,8 +324,9 @@ export default mixins(
}, },
mouseDown (e: MouseEvent) { mouseDown (e: MouseEvent) {
// Save the location of the mouse click // Save the location of the mouse click
this.lastClickPosition[0] = e.pageX; const offsetPosition = this.$store.getters.getNodeViewOffsetPosition;
this.lastClickPosition[1] = e.pageY; this.lastClickPosition[0] = e.pageX - offsetPosition[0];
this.lastClickPosition[1] = e.pageY - offsetPosition[1];
this.mouseDownMouseSelect(e); this.mouseDownMouseSelect(e);
this.mouseDownMoveWorkflow(e); this.mouseDownMoveWorkflow(e);