From 716cf2427f04e943134e5393340cf3d41f2b6af2 Mon Sep 17 00:00:00 2001 From: shannon Date: Thu, 13 Mar 2025 10:59:00 -0400 Subject: [PATCH] VoiceOver improvements for filtered notifications banner Contributes to #399 [BUG] Multiple interactions do not collapse into a single notification Contributes to IOS-380 --- .../NotificationListViewController.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift index c96f8cca9..6855864cf 100644 --- a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift +++ b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift @@ -162,6 +162,10 @@ struct NotificationListView: View { case .filteredNotificationsInfo(_, let viewModel): if let viewModel { FilteredNotificationsRowView(viewModel) + .accessibilityElement(children: .combine) + .accessibilityAction { + didTap(item: notificationListItem) + } } else { Text("Some notifications have been filtered.") }