Minor changes

This commit is contained in:
Arkadiusz Fal
2022-08-15 00:16:37 +02:00
parent d2cecf164d
commit dcfd24e376
3 changed files with 3 additions and 3 deletions

View File

@@ -315,7 +315,7 @@ struct VideoPlayerView: View {
.onMoveCommand { direction in
if direction == .up {
playerControls.show()
} else if direction == .down, !playerControls.presentingControlsOverlay {
} else if direction == .down, !playerControls.presentingControlsOverlay, !playerControls.presentingControls {
withAnimation(PlayerControls.animation) {
playerControls.presentingControlsOverlay = true
}