2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

Add “see more” accessibility option to trigger refresh of notifications feed

Contributes to #399 [BUG] Multiple interactions do not collapse into a single notification
Contributes to IOS-380
This commit is contained in:
shannon 2025-03-13 11:23:39 -04:00
parent 716cf2427f
commit 48be2e2f8f

View File

@ -145,6 +145,11 @@ struct NotificationListView: View {
.onDisappear() {
viewDidDisappear()
}
.accessibilityAction(named: L10n.Common.Controls.Actions.seeMore) {
Task {
await viewModel.refreshFeedFromTop()
}
}
}
}
}