From 5faf4b4197a0e73709aeaeafd95e529d6299359b Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Mon, 1 Jun 2026 16:49:58 +0200 Subject: [PATCH] fix(ui): keep talkie overlay visible after reveal step Regression introduced by the narrator-video revert (1ad0c4d): the talkie overlay was hidden whenever no narrator subtitle was active. Restore the prior behaviour where the talkie stays visible from the reveal step onward and only the --raised modifier and signal lines depend on the active narrator dialogue. --- src/components/ui/TalkieDialogueOverlay.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ui/TalkieDialogueOverlay.tsx b/src/components/ui/TalkieDialogueOverlay.tsx index d28c2cc..bc1b445 100644 --- a/src/components/ui/TalkieDialogueOverlay.tsx +++ b/src/components/ui/TalkieDialogueOverlay.tsx @@ -71,14 +71,14 @@ export function TalkieDialogueOverlay(): React.JSX.Element | null { mainState !== "intro" || TALKIE_REVEAL_STEPS.has(introStep); const isNarratorDialogue = activeSubtitle?.speaker === "Narrateur"; - if (!isAfterReveal || !isNarratorDialogue) return null; + if (!isAfterReveal) return null; return (