Skip to content

Commit

Permalink
Merge pull request #32 from ShukantPal/fix/transformer-pointermove
Browse files Browse the repository at this point in the history
Fix #31
  • Loading branch information
ShukantPal committed Jul 18, 2021
2 parents 8fd2b39 + 4bec0f9 commit fdad636
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/transformer/src/Transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1307,10 +1307,11 @@ export class Transformer extends Container
this._pointerPosition.x = cx;
this._pointerPosition.y = cy;
this._pointerDragging = true;

e.stopPropagation();
}

pointPool.release(currentPointerPosition);
e.stopPropagation();
}

/** Called on the `pointerup` and `pointerupoutside` events. You must call the super implementation. */
Expand Down

0 comments on commit fdad636

Please sign in to comment.