refboard: hide transform box during crop mode

This commit is contained in:
Hiren Kangad
2026-03-13 11:37:03 +05:30
parent f978153a83
commit 8e23c3e884
+3
View File
@@ -135,6 +135,9 @@ export class SelectionManager {
this._pointerDown = false; this._pointerDown = false;
this._rubberBanding = false; this._rubberBanding = false;
this._bandGfx.visible = false; this._bandGfx.visible = false;
this.transformBox.visible = false;
} else if (this.selectedIds.size > 0) {
this.transformBox.update(this.getSelectedItems());
} }
} }