1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30

Fix player gesture

This commit is contained in:
Arkadiusz Fal 2022-07-11 20:15:48 +02:00
parent 4ec194c438
commit aaf051a010

View File

@ -213,7 +213,7 @@ struct VideoPlayerView: View {
hovering ? playerControls.show() : playerControls.hide()
}
#if os(iOS)
.gesture(isPlayerDragGestureEnabled ? playerDragGesture : nil)
.gesture(playerControls.presentingOverlays ? nil : playerDragGesture)
#elseif os(macOS)
.onAppear(perform: {
NSEvent.addLocalMonitorForEvents(matching: [.mouseMoved]) {
@ -361,10 +361,6 @@ struct VideoPlayerView: View {
}
}
var isPlayerDragGestureEnabled: Bool {
!player.controls.presentingDetailsOverlay && !player.controls.presentingDetailsOverlay
}
var controlsTopPadding: Double {
guard fullScreenLayout else { return 0 }