From f800b17534d77975d602ac9b874fcfac1d750663 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Thu, 4 Sep 2025 21:01:11 +0200 Subject: [PATCH] feat: group elements into scene context menu item (no functionality) --- .../components/editor/timeline/timeline-element.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/web/src/components/editor/timeline/timeline-element.tsx b/apps/web/src/components/editor/timeline/timeline-element.tsx index ca47d3ca..8f78e5e9 100644 --- a/apps/web/src/components/editor/timeline/timeline-element.tsx +++ b/apps/web/src/components/editor/timeline/timeline-element.tsx @@ -10,6 +10,7 @@ import { Eye, Volume2, VolumeX, + FolderPlus, } from "lucide-react"; import { useMediaStore } from "@/stores/media-store"; import { useTimelineStore } from "@/stores/timeline-store"; @@ -372,6 +373,15 @@ export function TimelineElement({ + {}}> + + {isMultipleSelected && isCurrentElementSelected + ? `Group ${selectedElements.length} elements into scene` + : `Group into scene`} + + + +