Skip to content

Commit

Permalink
Disable playback HUD on macOS to avoid sandboxing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed May 24, 2024
1 parent 042b0f3 commit 40c4771
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Demo/Sources/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ struct SettingsView: View {
applicationSection()
playerSection()
debuggingSection()
playbackHudSection()
if !ProcessInfo.processInfo.isiOSAppOnMac {
playbackHudSection()
}
#if os(iOS)
gitHubSection()
#endif
Expand Down

0 comments on commit 40c4771

Please sign in to comment.