mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-26 04:11:50 +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
|
// when using touch, pause screens can be dismissed by tapping
|
||||||
const showTargetsWithoutPause =
|
const showTargetsWithoutPause =
|
||||||
isHovering || isHoveringControls || hasOpenOverlay;
|
isHovering || (isHoveringControls && !isUsingTouch) || hasOpenOverlay;
|
||||||
const showTargetsIncludingPause = showTargetsWithoutPause || isPaused;
|
const showTargetsIncludingPause = showTargetsWithoutPause || isPaused;
|
||||||
const showTargets = isUsingTouch
|
const showTargets = isUsingTouch
|
||||||
? showTargetsWithoutPause
|
? showTargetsWithoutPause
|
||||||
|
Loading…
Reference in New Issue
Block a user