Skip to content

Commit

Permalink
Fix unresponsive AirPlay button (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
waliid authored Jan 26, 2024
1 parent 6809ddc commit 01bb2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Demo/Sources/Players/PlaybackView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ private struct MainView: View {
}
.statusBarHidden(isFullScreen ? isUserInterfaceHidden : false)
.animation(.defaultLinear, value: isUserInterfaceHidden)
.supportsHighSpeed(for: player)
.bind(visibilityTracker, to: player)
._debugBodyCounter()
}
Expand Down Expand Up @@ -80,6 +79,7 @@ private struct MainView: View {
TapGesture()
.onEnded { _ in visibilityTracker.reset() }
)
.supportsHighSpeed(for: player)
}

@ViewBuilder
Expand Down

0 comments on commit 01bb2f5

Please sign in to comment.