mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Don't show handles when fully selected, it is too crowded
This commit is contained in:
parent
bf2a405ede
commit
f2ae9bc6db
1 changed files with 2 additions and 1 deletions
|
@ -2321,7 +2321,8 @@ new function() { // Scope for drawing
|
||||||
drawSegments(ctx, this, matrix);
|
drawSegments(ctx, this, matrix);
|
||||||
// Now stroke it and draw its handles:
|
// Now stroke it and draw its handles:
|
||||||
ctx.stroke();
|
ctx.stroke();
|
||||||
drawHandles(ctx, this._segments, matrix, paper.settings.handleSize);
|
drawHandles(ctx, this._segments, matrix, paper.settings.handleSize,
|
||||||
|
this.isFullySelected());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue