From 18cfc1ad6b28649073a568d637b7cbf74d0e1e80 Mon Sep 17 00:00:00 2001 From: sloppy_dev <78643806+ferozhussain@users.noreply.github.com> Date: Thu, 24 Apr 2025 23:08:34 +0530 Subject: [PATCH] Trigger clip:selected event on resize completion --- src/core/entities/player.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/entities/player.ts b/src/core/entities/player.ts index 083cf2f4..51eb6d39 100644 --- a/src/core/entities/player.ts +++ b/src/core/entities/player.ts @@ -560,7 +560,7 @@ export abstract class Player extends Entity { } private onPointerUp(): void { - if (this.isDragging) { + if (this.isDragging || this.scaleDirection !== null || this.isRotating) { this.edit.setSelectedClip(this); }