Merge pull request #619 from mastodon/fix_tabbar_selection_delay

fix: TabBar has noticeable delay when selecting next tab
This commit is contained in:
Marcus Kida 2022-11-17 15:39:46 +01:00 committed by GitHub
commit 586c1669f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -329,6 +329,7 @@ extension MainTabBarController {
let tabBarDoubleTapGestureRecognizer = UITapGestureRecognizer()
tabBarDoubleTapGestureRecognizer.numberOfTapsRequired = 2
tabBarDoubleTapGestureRecognizer.addTarget(self, action: #selector(MainTabBarController.tabBarDoubleTapGestureRecognizerHandler(_:)))
tabBarDoubleTapGestureRecognizer.delaysTouchesEnded = false
tabBar.addGestureRecognizer(tabBarDoubleTapGestureRecognizer)
self.isReadyForWizardAvatarButton = authContext != nil