mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix drawing of selected handles.
This commit is contained in:
parent
c543704115
commit
532176ac62
1 changed files with 1 additions and 1 deletions
|
@ -1525,7 +1525,7 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{
|
|||
// smaller on all sides:
|
||||
if (!selected) {
|
||||
ctx.beginPath();
|
||||
ctx.rect(pX - half - 1, pY - half- 1, size - 2, size - 2);
|
||||
ctx.rect(pX - half + 1, pY - half + 1, size - 2, size - 2);
|
||||
ctx.fillStyle = '#ffffff';
|
||||
ctx.fill();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue