diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-29 11:26:58 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-29 11:26:58 -0400 |
| commit | e5905220a84a62fff36965a3bf74a55b793ae31b (patch) | |
| tree | 28fe1ead8db094bf130a96164773821e24567f35 /src/client/views/InkingStroke.tsx | |
| parent | 048f22e2c5a2254591aad4719a8efd6357d16430 (diff) | |
fixed filling of curves. added toggling of brokenindex with right-click. changed look of ink handles to be lighter weight and to reflect brokenindex sttate
Diffstat (limited to 'src/client/views/InkingStroke.tsx')
| -rw-r--r-- | src/client/views/InkingStroke.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx index 867677005..4cd7f7698 100644 --- a/src/client/views/InkingStroke.tsx +++ b/src/client/views/InkingStroke.tsx @@ -210,6 +210,7 @@ export class InkingStroke extends ViewBoxBaseComponent<FieldViewProps, InkDocume transform: this.props.Document.isInkMask ? `translate(${InkingStroke.MaskDim / 2}px, ${InkingStroke.MaskDim / 2}px)` : undefined, mixBlendMode: this.layoutDoc.tool === InkTool.Highlighter ? "multiply" : "unset", overflow: "visible", + cursor: this.props.isSelected() ? "default" : undefined }} onPointerLeave={action(e => this._nearestScrPt = undefined)} onPointerMove={this.props.isSelected() ? this.onPointerMove : undefined} |
