mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 09:15:07 +01:00
Fix overlay always staying on on touch devices
This commit is contained in:
parent
9cb694d65b
commit
08cc5260bd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user