From ccf7ba27c908ea3733fca602121cd0389bb74dca Mon Sep 17 00:00:00 2001 From: Gabriel Handford Date: Wed, 14 May 2014 15:56:28 -0700 Subject: [PATCH] If blur level is set to 0, then still call completion, so the bounce animation to occurs. --- RNGridMenu.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RNGridMenu.m b/RNGridMenu.m index 8a0a1f5..35424f4 100644 --- a/RNGridMenu.m +++ b/RNGridMenu.m @@ -590,6 +590,8 @@ - (void)createScreenshotAndLayoutWithScreenshotCompletion:(dispatch_block_t)scre [self.view layoutIfNeeded]; }); }); + } else { + if (screenshotCompletion) screenshotCompletion(); } }