Skip to content

Commit 3135139

Browse files
committed
- Fixed an animation glitch in scale animation
1 parent 8d331af commit 3135139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SlideMenu/Source/Animations/SlideNavigationContorllerAnimatorScale.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ - (void)prepareMenuForAnimation:(Menu)menu
3939
? [SlideNavigationController sharedInstance].leftMenu
4040
: [SlideNavigationController sharedInstance].rightMenu;
4141

42-
menuViewController.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, self.minimumScale, self.minimumScale);
42+
menuViewController.view.transform = CGAffineTransformScale(menuViewController.view.transform, self.minimumScale, self.minimumScale);
4343
}
4444

4545
- (void)animateMenu:(Menu)menu withProgress:(CGFloat)progress

0 commit comments

Comments
 (0)