diff --git a/ui/component/viewers/videoViewer/view.jsx b/ui/component/viewers/videoViewer/view.jsx index 1578e33de..dde1462df 100644 --- a/ui/component/viewers/videoViewer/view.jsx +++ b/ui/component/viewers/videoViewer/view.jsx @@ -217,6 +217,11 @@ function VideoViewer(props: Props) { if (player) { player.on('tracking:buffered', (e, d) => doTrackingBuffered(e, d)); player.on('tracking:firstplay', (e, d) => doTrackingFirstPlay(e, d)); + + // fixes #3498 (https://github.com/lbryio/lbry-desktop/issues/3498) + // summary: on firefox the focus would stick to the fullscreen button which caused buggy behavior with spacebar + // $FlowFixMe + player.on('fullscreenchange', () => document.activeElement && document.activeElement.blur()); } return () => { if (player) {