We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb66829 commit ebc26d8Copy full SHA for ebc26d8
packages/canvas/Canvas/common.ts
@@ -695,7 +695,7 @@ export abstract class CanvasBase extends View implements ICanvasBase {
695
}
696
697
if (hasTouchCallbacks && !preventDefault) {
698
- const touches = TouchList.fromList(this._touches);
+ const touches = TouchList.fromList(this._touches.filter((t) => t.identifier !== ptrId));
699
700
const changedTouches = TouchList.fromList([
701
new Touch({
0 commit comments