diff --git a/package.json b/package.json index 977cbda6..111525a4 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/webadderall/Recordly/issues" }, "private": true, - "version": "1.1.20", + "version": "1.1.21", "type": "module", "scripts": { "dev": "vite", diff --git a/src/components/video-editor/videoPlayback/cursorRenderer.ts b/src/components/video-editor/videoPlayback/cursorRenderer.ts index b61aa6cb..5c2e2626 100644 --- a/src/components/video-editor/videoPlayback/cursorRenderer.ts +++ b/src/components/video-editor/videoPlayback/cursorRenderer.ts @@ -117,8 +117,6 @@ const SUPPORTED_CURSOR_KEYS: CursorAssetKey[] = [ ]; const DEFAULT_CURSOR_PACK_ANCHOR = { x: 0.08, y: 0.08 } as const; -const POINTER_CURSOR_PACK_ANCHOR = { x: 0.48, y: 0.1 } as const; -const CENTERED_CURSOR_PACK_ANCHOR = { x: 0.5, y: 0.5 } as const; const CURSOR_PACK_POINTER_TYPES = new Set(["pointer", "open-hand", "closed-hand"]); const BUILTIN_CURSOR_PACK_SOURCES: Record = {};