diff --git a/Tusker/Screens/Customize Timelines/PinnedTimelinesView.swift b/Tusker/Screens/Customize Timelines/PinnedTimelinesView.swift index cd188ba5..9ee5c0c8 100644 --- a/Tusker/Screens/Customize Timelines/PinnedTimelinesView.swift +++ b/Tusker/Screens/Customize Timelines/PinnedTimelinesView.swift @@ -45,6 +45,13 @@ struct PinnedTimelinesView: View { .foregroundColor(Color(.lightGray)) .accessibilityHidden(true) } + .contextMenu { + Button(role: .destructive) { + pinnedTimelines.removeAll(where: { $0.id == timeline.id }) + } label: { + Label("Remove Pinned Timeline", systemImage: "trash") + } + } } .onMove { indices, newOffset in pinnedTimelines.move(fromOffsets: indices, toOffset: newOffset)