diff options
-rw-r--r-- | src/client/views/InkingStroke.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx index 76ea7f084..bab9f3a60 100644 --- a/src/client/views/InkingStroke.tsx +++ b/src/client/views/InkingStroke.tsx @@ -60,7 +60,7 @@ export class InkingStroke extends React.Component<StrokeProps> { return ( <path className={(this._strokeTool === InkTool.Highlighter) ? "highlight" : ""} d={pathData} style={pathStyle} strokeLinejoin="round" strokeLinecap="round" - onMouseOver={this.deleteStroke} /> + onMouseOver={this.deleteStroke} onMouseDown={this.deleteStroke} /> ) } }
\ No newline at end of file |