diff --git a/Shared/Player/Controls/ControlsOverlay.swift b/Shared/Player/Controls/ControlsOverlay.swift index a87cfe98..c5ac61b0 100644 --- a/Shared/Player/Controls/ControlsOverlay.swift +++ b/Shared/Player/Controls/ControlsOverlay.swift @@ -354,6 +354,8 @@ struct ControlsOverlay: View { .frame(maxWidth: 320) } .contextMenu { + Button("Disabled") { captionsBinding.wrappedValue = nil } + ForEach(player.currentVideo?.captions ?? []) { caption in Button(caption.description) { captionsBinding.wrappedValue = caption } }