mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 05:52:42 -05:00
fix hit testing
This commit is contained in:
parent
33d8dd30b5
commit
33236f198d
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ class ReshapeTool extends paper.Tool {
|
||||||
curves: true,
|
curves: true,
|
||||||
handles: true,
|
handles: true,
|
||||||
fill: true,
|
fill: true,
|
||||||
guide: false
|
guide: false,
|
||||||
|
tolerance: ReshapeTool.TOLERANCE / paper.view.zoom
|
||||||
};
|
};
|
||||||
if (preselectedOnly) {
|
if (preselectedOnly) {
|
||||||
hitOptions.match = item => {
|
hitOptions.match = item => {
|
||||||
|
|
Loading…
Reference in a new issue