aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-09-21 22:45:02 -0400
committerbobzel <zzzman@gmail.com>2024-09-21 22:45:02 -0400
commitf29740d79ef0b43b445eb4ab86baef77c9d51158 (patch)
tree53c46c00733dddb128bb0465096e865e194a8124 /src
parent03374621c3739768850e4e183fbb5d1c278b2290 (diff)
fixed selection of ink lines to happen in overlay layer
Diffstat (limited to 'src')
-rw-r--r--src/client/views/InkingStroke.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx
index 2e82371cb..498042938 100644
--- a/src/client/views/InkingStroke.tsx
+++ b/src/client/views/InkingStroke.tsx
@@ -331,9 +331,10 @@ export class InkingStroke extends ViewBoxAnnotatableComponent<FieldViewProps>()
1,
1,
'' as Gestures,
- 'none',
+ 'all',
1.0,
- false
+ false,
+ this.onPointerDown
)}
<InkControlPtHandles inkView={this} inkDoc={inkDoc} inkCtrlPoints={inkData} screenCtrlPoints={this.screenCtrlPts} nearestScreenPt={this.nearestScreenPt} screenSpaceLineWidth={screenSpaceCenterlineStrokeWidth} />
<InkTangentHandles inkView={this} inkDoc={inkDoc} screenCtrlPoints={this.screenCtrlPts} screenSpaceLineWidth={screenSpaceCenterlineStrokeWidth} />