From 7cf5685a871a69bb33c07f06b74e9dbba853b17e Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Thu, 30 Jan 2014 20:42:55 -0800 Subject: [PATCH] Speedier animation. --- clients/ios/Classes/StoryPageControl.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/ios/Classes/StoryPageControl.m b/clients/ios/Classes/StoryPageControl.m index ad8135aa2..1648596f6 100644 --- a/clients/ios/Classes/StoryPageControl.m +++ b/clients/ios/Classes/StoryPageControl.m @@ -614,7 +614,7 @@ CGRect frame = self.scrollView.frame; frame.origin.x = frame.size.width; self.scrollView.frame = frame; - [UIView animateWithDuration:.3 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{ + [UIView animateWithDuration:.22 delay:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ CGRect frame = self.scrollView.frame; frame.origin.x = 0; self.scrollView.frame = frame;