complete 1459cd

This commit is contained in:
Maze Winther
2025-07-10 14:30:12 +02:00
parent 3a34485cc7
commit 2fe67febd6
2 changed files with 133 additions and 0 deletions

View File

@ -68,6 +68,7 @@ export function Timeline() {
splitElement,
splitAndKeepLeft,
splitAndKeepRight,
toggleTrackMute,
separateAudio,
undo,
redo,
@ -1087,6 +1088,11 @@ export function Timeline() {
</div>
</ContextMenuTrigger>
<ContextMenuContent>
<ContextMenuItem
onClick={() => toggleTrackMute(track.id)}
>
{track.muted ? "Unmute Track" : "Mute Track"}
</ContextMenuItem>
<ContextMenuItem>
Track settings (soon)
</ContextMenuItem>