From e81a2421577266effb5d6d84a6624a07e848d3ba Mon Sep 17 00:00:00 2001 From: Codex Date: Sun, 24 May 2026 16:34:31 +1000 Subject: [PATCH] chore(cursor): default to tahoe cursor style --- src/components/video-editor/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/video-editor/types.ts b/src/components/video-editor/types.ts index 30b3adaa..b88f3d2e 100644 --- a/src/components/video-editor/types.ts +++ b/src/components/video-editor/types.ts @@ -51,7 +51,7 @@ export interface CursorVisualSettings { } export type CursorStyle = "macos" | "tahoe" | "tahoe-inverted" | "dot" | "figma" | (string & {}); // extension-contributed cursor styles -export const DEFAULT_CURSOR_STYLE: CursorStyle = "macos"; +export const DEFAULT_CURSOR_STYLE: CursorStyle = "tahoe"; export type EditorEffectSection = | "scene"