Skip to content

Commit

Permalink
Addressed Issue #35
Browse files Browse the repository at this point in the history
  • Loading branch information
Marxon13 committed Dec 13, 2014
1 parent 040ce48 commit 57cd39f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Classes/HUD/M13ProgressHUD.m
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,9 @@ - (UIImage *)snapshotForBlurredBackgroundInView:(UIView *)view
//Draw the snapshot view into a UIImage
UIGraphicsBeginImageContextWithOptions(snapshotView.bounds.size, YES, [UIScreen mainScreen].scale);
CGContextRef context = UIGraphicsGetCurrentContext();
if (!context) {
return nil;
}
CGContextTranslateCTM(context, viewRect.origin.x, viewRect.origin.y);
BOOL result = [self.superview drawViewHierarchyInRect:viewRect afterScreenUpdates:YES];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
Expand Down
4 changes: 2 additions & 2 deletions M13ProgressSuite.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "M13ProgressSuite"
s.version = "1.2.6"
s.version = "1.2.7"
s.summary = "A suite containing many tools to display progress information on iOS."

s.description = <<-DESC
Expand All @@ -27,7 +27,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

s.platform = :ios, '7.0'

s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "v1.2.6"}
s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "v1.2.7"}

s.source_files = 'Classes/*/*'

Expand Down
Binary file not shown.

0 comments on commit 57cd39f

Please sign in to comment.