[fix] Drawing tool touch for first pen mark (#1977)

This PR fixes a bug where a touch from a palm received at the start of a
drawing operation, when that operation was the first entry into pen
mode, would cause the line to fail.

### Change Type

- [x] `patch` — Bug fix

### Test Plan

1. On an iPad with a pencil, select the draw tool. Ensure that you're
not yet in pen mode.
2. Place your palm on the iPad and immediately place the pencil on the
screen.
3. Previously, you would get a line between your palm and the pencil
point. Now, you should get only the pencil point.

### Release Notes

- [fix] Accidental palm inputs when using iPad pencil
This commit is contained in:
Steve Ruiz 2023-10-02 10:46:59 +01:00 committed by GitHub
parent 0d21e8aad2
commit 852187058a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,13 +69,17 @@ export class Drawing extends StateNode {
// The user made a palm gesture before starting a pen gesture; // The user made a palm gesture before starting a pen gesture;
// ideally we'd start the new shape here but we could also just bail // ideally we'd start the new shape here but we could also just bail
// as the next interaction will work correctly // as the next interaction will work correctly
this.cancel() if (this.markId) {
} this.editor.bailToMark(this.markId)
this.startShape()
// If we came in from a menu but have no started dragging... return
if (!this.canDraw && inputs.isDragging) { }
this.startShape() } else {
this.canDraw = true // bad name // If we came in from a menu but have no started dragging...
if (!this.canDraw && inputs.isDragging) {
this.startShape()
this.canDraw = true // bad name
}
} }
if (this.canDraw) { if (this.canDraw) {