From 8e23c3e884b04cb957d6abc5127968d67f533f6d Mon Sep 17 00:00:00 2001 From: Hiren Kangad Date: Fri, 13 Mar 2026 11:37:03 +0530 Subject: [PATCH] refboard: hide transform box during crop mode --- frontend/src/canvas/SelectionManager.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/canvas/SelectionManager.ts b/frontend/src/canvas/SelectionManager.ts index bba038a..62a3641 100644 --- a/frontend/src/canvas/SelectionManager.ts +++ b/frontend/src/canvas/SelectionManager.ts @@ -135,6 +135,9 @@ export class SelectionManager { this._pointerDown = false; this._rubberBanding = false; this._bandGfx.visible = false; + this.transformBox.visible = false; + } else if (this.selectedIds.size > 0) { + this.transformBox.update(this.getSelectedItems()); } }