Merge pull request #108 from karolkozub/master

Fix incorrectly assigning an NSNumber to blurEffect which resulted in a crash on -layoutSubviews
This commit is contained in:
Alexey 2016-11-04 15:40:52 +01:00 committed by GitHub
commit a61011b3ad
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
- (void)setBlurAmount:(NSNumber *)blurAmount
{
blurEffect = [BlurAmount updateBlurAmount:blurAmount];
[BlurAmount updateBlurAmount:blurAmount];
}