Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Add shadowOffset to list of support CGSize properties. (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey authored Nov 20, 2017
1 parent 6579c67 commit 89abc77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/private/CABasicAnimation+MotionAnimator.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void MDMConfigureAnimation(CABasicAnimation *animation,
static NSSet *positionKeyPaths = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sizeKeyPaths = [NSSet setWithArray:@[@"bounds.size"]];
sizeKeyPaths = [NSSet setWithArray:@[@"bounds.size", @"shadowOffset"]];
positionKeyPaths = [NSSet setWithArray:@[@"position", @"anchorPoint"]];
});

Expand Down

0 comments on commit 89abc77

Please sign in to comment.