diff --git a/Yattee/Views/Components/VideoContextMenu.swift b/Yattee/Views/Components/VideoContextMenu.swift index 7047f518..81d9b3cb 100644 --- a/Yattee/Views/Components/VideoContextMenu.swift +++ b/Yattee/Views/Components/VideoContextMenu.swift @@ -636,6 +636,12 @@ struct VideoContextMenuView: View { } .id(refreshID) .menuIndicator(.hidden) + #if os(macOS) + // The default macOS menu style renders as a bordered pull-down that + // stretches to fill available width on macOS 15 (Sequoia). + .menuStyle(.borderlessButton) + .fixedSize() + #endif .sheet(isPresented: $showingPlaylistSheet) { PlaylistSelectorSheet(video: video) } diff --git a/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift b/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift index 37ef19d1..5c2dec55 100644 --- a/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift +++ b/Yattee/Views/Playlist/UnifiedPlaylistDetailView.swift @@ -456,6 +456,13 @@ struct UnifiedPlaylistDetailView: View { .frame(width: 44, height: 44) .background(.regularMaterial, in: Circle()) } + .menuIndicator(.hidden) + #if os(macOS) + // The default macOS menu style renders as a bordered pull-down that + // stretches to fill available width on macOS 15 (Sequoia). + .menuStyle(.borderlessButton) + .fixedSize() + #endif } .padding(.top, 8) }