diff --git a/apps/desktop/src/routes/editor/ConfigSidebar.tsx b/apps/desktop/src/routes/editor/ConfigSidebar.tsx index 2e51a3cd06..bbdc48e1a9 100644 --- a/apps/desktop/src/routes/editor/ConfigSidebar.tsx +++ b/apps/desktop/src/routes/editor/ConfigSidebar.tsx @@ -333,6 +333,9 @@ export function ConfigSidebar() { "--margin-top-scroll": "5px", }} class="custom-scroll overflow-x-hidden overflow-y-scroll text-[0.875rem] flex-1 min-h-0" + classList={{ + hidden: !!editorState.timeline.selection, + }} > @@ -645,14 +648,19 @@ export function ConfigSidebar() { - - {(selection) => ( -
+
+ + {(selection) => ( { @@ -872,9 +880,9 @@ export function ConfigSidebar() { )} -
- )} - + )} + +
); } diff --git a/apps/desktop/src/routes/editor/Header.tsx b/apps/desktop/src/routes/editor/Header.tsx index 5f25c6d078..af14a57b94 100644 --- a/apps/desktop/src/routes/editor/Header.tsx +++ b/apps/desktop/src/routes/editor/Header.tsx @@ -112,7 +112,7 @@ export function Header() { }} tooltipText="Captions" leftIcon={} - comingSoon={!editorState.timeline.selection} + comingSoon={true} /> { @@ -120,7 +120,7 @@ export function Header() { }} tooltipText="Performance" leftIcon={} - comingSoon={!editorState.timeline.selection} + comingSoon={true} />