diff --git a/src/helper/selection-tools/reshape-tool.js b/src/helper/selection-tools/reshape-tool.js index cb55fd1b..15a50f44 100644 --- a/src/helper/selection-tools/reshape-tool.js +++ b/src/helper/selection-tools/reshape-tool.js @@ -96,6 +96,10 @@ class ReshapeTool extends paper.Tool { if (!item.segment.selected) { return false; } + // If the entire shape is selected, handles are hidden + if (item.item.fullySelected) { + return false; + } } return true; }; @@ -107,6 +111,10 @@ class ReshapeTool extends paper.Tool { if (!item.segment.selected) { return false; } + // If the entire shape is selected, handles are hidden + if (item.item.fullySelected) { + return false; + } } return true; };