diff --git a/web/src/components/player/HlsVideoPlayer.tsx b/web/src/components/player/HlsVideoPlayer.tsx index 81b5b1e47..5123b9df0 100644 --- a/web/src/components/player/HlsVideoPlayer.tsx +++ b/web/src/components/player/HlsVideoPlayer.tsx @@ -68,7 +68,7 @@ export default function HlsVideoPlayer({ videoClassName, containerRef, visible, - showControls = visible, + showControls = true, currentSource, hotKeys, supportsFullscreen, @@ -290,7 +290,7 @@ export default function HlsVideoPlayer({ )} video={videoRef.current} isPlaying={isPlaying} - show={showControls && (controls || controlsOpen)} + show={visible && showControls && (controls || controlsOpen)} muted={muted} volume={volume} features={{ @@ -395,9 +395,8 @@ export default function HlsVideoPlayer({