diff --git a/src/view/com/util/post-embeds/VideoWebControls.web.tsx b/src/view/com/util/post-embeds/VideoWebControls.web.tsx index 632b108e9d..bd4dfc328f 100644 --- a/src/view/com/util/post-embeds/VideoWebControls.web.tsx +++ b/src/view/com/util/post-embeds/VideoWebControls.web.tsx @@ -115,7 +115,10 @@ export function Controls({ display: 'flex', flexDirection: 'column', }} - onClick={() => setInteractingViaKeypress(false)} + onClick={evt => { + evt.stopPropagation() + setInteractingViaKeypress(false) + }} onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} onFocus={onFocus}