diff options
Diffstat (limited to 'src/client/views/InkControls.tsx')
-rw-r--r-- | src/client/views/InkControls.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/InkControls.tsx b/src/client/views/InkControls.tsx index 6213a4075..46377380a 100644 --- a/src/client/views/InkControls.tsx +++ b/src/client/views/InkControls.tsx @@ -121,8 +121,8 @@ export class InkControls extends React.Component<InkControlProps> { <rect x={(control.X - left - strokeWidth / 2) * scaleX} y={(control.Y - top - strokeWidth / 2) * scaleY} - height={this._overControl === i ? strokeWidth * 1.5 : strokeWidth} - width={this._overControl === i ? strokeWidth * 1.5 : strokeWidth} + height={this._overControl === i ? strokeWidth * 6 : strokeWidth * 3} + width={this._overControl === i ? strokeWidth * 6 : strokeWidth * 3} strokeWidth={strokeWidth / 6} stroke={Colors.MEDIUM_BLUE} fill={formatInstance?._currentPoint === control.I ? Colors.MEDIUM_BLUE : Colors.WHITE} onPointerDown={(e) => { |