diff --git a/Tusker/Screens/Fast Account Switcher/FastAccountSwitcherViewController.swift b/Tusker/Screens/Fast Account Switcher/FastAccountSwitcherViewController.swift index 39d6fcba..b3f4631f 100644 --- a/Tusker/Screens/Fast Account Switcher/FastAccountSwitcherViewController.swift +++ b/Tusker/Screens/Fast Account Switcher/FastAccountSwitcherViewController.swift @@ -73,12 +73,12 @@ class FastAccountSwitcherViewController: UIViewController { accountView.alpha = 0 accountView.transform = CGAffineTransform(scaleX: 1.2, y: 1.2) - UIView.addKeyframe(withRelativeStartTime: relStart, relativeDuration: relDuration) { + UIView.addKeyframe(withRelativeStartTime: relStart, relativeDuration: relDuration / 2) { accountView.alpha = 1 accountView.transform = CGAffineTransform(scaleX: 0.9, y: 0.9) } - UIView.addKeyframe(withRelativeStartTime: relStart + relDuration, relativeDuration: relDuration) { + UIView.addKeyframe(withRelativeStartTime: relStart + relDuration / 2, relativeDuration: relDuration / 2) { accountView.transform = .identity } }