From d36df2fb6273bb16d4874972a0dc832bad6836ab Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Mon, 7 Jul 2025 23:05:31 +0200 Subject: [PATCH] refactor: remove element menu from timeline element component --- .../components/editor/timeline-element.tsx | 64 ------------------- 1 file changed, 64 deletions(-) diff --git a/apps/web/src/components/editor/timeline-element.tsx b/apps/web/src/components/editor/timeline-element.tsx index b2c95bb..211c4e9 100644 --- a/apps/web/src/components/editor/timeline-element.tsx +++ b/apps/web/src/components/editor/timeline-element.tsx @@ -298,70 +298,6 @@ export function TimelineElement({ /> )} - -
- - - - - - {/* Split operations - only available when playhead is within element */} - - - - Split - - - - - Split at Playhead - - - - Split and Keep Left - - - - Split and Keep Right - - - - - {/* Audio separation - only available for video elements */} - {canSeparateAudio() && ( - <> - - - - Separate Audio - - - )} - - - - - Delete {element.type === "text" ? "text" : "clip"} - - - -
);