diff --git a/Sources/SwiftBricks/Controls/VideoPlayerControl.swift b/Sources/SwiftBricks/Controls/VideoPlayerControl.swift index fe0b5fb..9552b27 100644 --- a/Sources/SwiftBricks/Controls/VideoPlayerControl.swift +++ b/Sources/SwiftBricks/Controls/VideoPlayerControl.swift @@ -60,7 +60,7 @@ struct VideoPlayerControl: View { func makeNSView(context: Context) -> NSView { let view = AVPlayerView() view.player = player - view.controlsStyle = .default + view.controlsStyle = schema.options.controls == false ? .none : .default return view }