From 48be2e2f8fbe3e4e2f062313a612acdb7b73ac62 Mon Sep 17 00:00:00 2001 From: shannon Date: Thu, 13 Mar 2025 11:23:39 -0400 Subject: [PATCH] =?UTF-8?q?Add=20=E2=80=9Csee=20more=E2=80=9D=20accessibil?= =?UTF-8?q?ity=20option=20to=20trigger=20refresh=20of=20notifications=20fe?= =?UTF-8?q?ed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Contributes to #399 [BUG] Multiple interactions do not collapse into a single notification Contributes to IOS-380 --- .../NotificationListViewController.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift index 6855864cf..4e37b285b 100644 --- a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift +++ b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift @@ -145,6 +145,11 @@ struct NotificationListView: View { .onDisappear() { viewDidDisappear() } + .accessibilityAction(named: L10n.Common.Controls.Actions.seeMore) { + Task { + await viewModel.refreshFeedFromTop() + } + } } } }