mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-03-13 22:50:01 -04:00
Use .25
This commit is contained in:
parent
76eb0b9e3e
commit
69e73d45dd
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class FillTool extends paper.Tool {
|
|||
this.addedFillItem.data.origItem = hitItem;
|
||||
// This usually fixes it so there isn't a teeny tiny gap in between the fill and the outline
|
||||
// when filling in a hole
|
||||
expandBy(this.addedFillItem, .5);
|
||||
expandBy(this.addedFillItem, .25);
|
||||
this.addedFillItem.insertAbove(hitItem.parent);
|
||||
} else if (this.fillItem.parent instanceof paper.CompoundPath) {
|
||||
this.fillItemOrigColor = hitItem.parent.fillColor;
|
||||
|
|
Loading…
Reference in a new issue