diff options
author | kimdahey <vjk1883@gmail.com> | 2021-09-13 18:03:56 -0400 |
---|---|---|
committer | kimdahey <vjk1883@gmail.com> | 2021-09-13 18:03:56 -0400 |
commit | 02a6d5404f23ffb486e183d68d3af71728e85f09 (patch) | |
tree | ae2d560c99c1484d4e3dda77a49f03b9db0a4515 /src/client/views/InkControls.tsx | |
parent | 9a4bd3ca5dbe192eec20bf405a9904ef8b546de6 (diff) |
working on control points
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) => { |