From cb0385a952fe5b6ab5e47f7ad77da3f7b1d794d6 Mon Sep 17 00:00:00 2001 From: StickmanRed <100049599+StickmanRed@users.noreply.github.com> Date: Fri, 21 Aug 2026 19:04:23 -0700 Subject: [PATCH] Fix handles not disappearing when tool is not Path Cursor --- engine/src/view/View.Path.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/src/view/View.Path.js b/engine/src/view/View.Path.js index 3709a4659..d0205299a 100644 --- a/engine/src/view/View.Path.js +++ b/engine/src/view/View.Path.js @@ -48,6 +48,9 @@ Wick.View.Path = class extends Wick.View { } this.importJSON(this.model.json); + if(!(this.model.project && this.model.project._activeTool && this.model.project._activeTool.name === 'pathcursor')) { + this.item.fullySelected = false; + } // Apply onion skin style if Needed // (This is done here in the Path code because we actually change the style of the path