Skip to content

Commit

Permalink
Fixed filter with overlayImage returning isEmpty.
Browse files Browse the repository at this point in the history
Fixes #306
  • Loading branch information
rFlex committed Jun 20, 2016
1 parent 2c71b0b commit 944dfbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Sources/SCFilter.m
Expand Up @@ -335,7 +335,7 @@ - (void)writeToFile:(NSURL *)fileUrl error:(NSError *__autoreleasing *)error {
- (BOOL)isEmpty {
BOOL isEmpty = YES;

if (_CIFilter != nil) {
if (_CIFilter != nil || _overlayImage != nil) {
return NO;
}

Expand Down

0 comments on commit 944dfbe

Please sign in to comment.