mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 05:52:42 -05:00
Increase reshape tool tolerance to match handle size
This causes the new dynamically-sized reshape handles to match their previous size.
This commit is contained in:
parent
e110a04093
commit
ec3348dc75
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ const ReshapeModes = keyMirror({
|
||||||
class ReshapeTool extends paper.Tool {
|
class ReshapeTool extends paper.Tool {
|
||||||
/** Distance within which mouse is considered to be hitting an item */
|
/** Distance within which mouse is considered to be hitting an item */
|
||||||
static get TOLERANCE () {
|
static get TOLERANCE () {
|
||||||
return 4;
|
return 5.25;
|
||||||
}
|
}
|
||||||
/** Clicks registered within this amount of time are registered as double clicks */
|
/** Clicks registered within this amount of time are registered as double clicks */
|
||||||
static get DOUBLE_CLICK_MILLIS () {
|
static get DOUBLE_CLICK_MILLIS () {
|
||||||
|
|
Loading…
Reference in a new issue