diff --git a/Shared/Player/WatchNextView.swift b/Shared/Player/WatchNextView.swift index e4232f2a..073cdcd4 100644 --- a/Shared/Player/WatchNextView.swift +++ b/Shared/Player/WatchNextView.swift @@ -181,11 +181,14 @@ struct WatchNextView: View { } @ViewBuilder var hideCloseButton: some View { - if model.isHideable { - hideButton - } else { - closeButton + Group { + if model.isHideable { + hideButton + } else { + closeButton + } } + .keyboardShortcut(.cancelAction) } var hideButton: some View {