1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-01-11 08:34:22 +01:00

chore: add a11y hint for profile dashboard

This commit is contained in:
CMK 2022-02-15 12:48:07 +08:00
parent 9158700c69
commit c2e5bcafb2

View File

@ -75,6 +75,9 @@ extension ProfileStatusDashboardView {
tapGestureRecognizer.addTarget(self, action: #selector(ProfileStatusDashboardView.tapGestureRecognizerHandler(_:)))
meterView.addGestureRecognizer(tapGestureRecognizer)
}
followingDashboardMeterView.accessibilityHint = "Double tap to open the list" // TODO: i18n
followersDashboardMeterView.accessibilityHint = "Double tap to open the list"
}
}