diff --git a/frontend/src/canvas/SelectionManager.ts b/frontend/src/canvas/SelectionManager.ts index 00eec27..4c28437 100644 --- a/frontend/src/canvas/SelectionManager.ts +++ b/frontend/src/canvas/SelectionManager.ts @@ -361,7 +361,7 @@ export class SelectionManager { // Double-click detected if (item.displayObject instanceof VideoSprite) { item.displayObject.togglePlayPause(); - } else if (item.type === 'text') { + } else if (item.type === 'text' || item.type === 'sticky') { this._onDoubleClickText?.(item); } else if (item.type === 'image' || item.type === 'drawing') { this._onDoubleClickImage?.(item);