diff --git a/src/components/player/hooks/useShouldShowControls.tsx b/src/components/player/hooks/useShouldShowControls.tsx index 30eac99a..58a70c09 100644 --- a/src/components/player/hooks/useShouldShowControls.tsx +++ b/src/components/player/hooks/useShouldShowControls.tsx @@ -17,7 +17,7 @@ export function useShouldShowControls() { // when using touch, pause screens can be dismissed by tapping const showTargetsWithoutPause = - isHovering || isHoveringControls || hasOpenOverlay; + isHovering || (isHoveringControls && !isUsingTouch) || hasOpenOverlay; const showTargetsIncludingPause = showTargetsWithoutPause || isPaused; const showTargets = isUsingTouch ? showTargetsWithoutPause