From 244da0b27d96b33321001233d82dd0d214fda098 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Wed, 17 Mar 2021 00:32:15 -0700 Subject: [PATCH] simulate move to update hover on fill tool mouse up --- src/helper/tools/fill-tool.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helper/tools/fill-tool.js b/src/helper/tools/fill-tool.js index a34638b7..a8ccc643 100644 --- a/src/helper/tools/fill-tool.js +++ b/src/helper/tools/fill-tool.js @@ -154,6 +154,7 @@ class FillTool extends paper.Tool { } handleMouseUp (event) { if (event.event.button > 0) return; // only first mouse button + this.handleMouseMove(event); // if it's a touch event we need to simulate hover first; if not this is harmless if (this.fillItem) { // If the hole we're filling in is the same color as the parent, and parent has no outline, remove the hole if (this.addedFillItem &&