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

Commit

Permalink
Fixed issue with checkmark not showing when saving or copying has com…
Browse files Browse the repository at this point in the history
…pleted.
  • Loading branch information
mwaterfall committed Jan 18, 2012
1 parent 6727bc2 commit b2ff8f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MWPhotoBrowser/Classes/MWPhotoBrowser.m
Expand Up @@ -1043,12 +1043,12 @@ - (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSIn
- (MBProgressHUD *)progressHUD {
if (!_progressHUD) {
_progressHUD = [[MBProgressHUD alloc] initWithView:self.view];
_progressHUD.minSize = CGSizeMake(100, 100);
_progressHUD.minSize = CGSizeMake(110, 110);
_progressHUD.minShowTime = 1;
// The sample image is based on the
// work by: http://www.pixelpressicons.com
// licence: http://creativecommons.org/licenses/by/2.5/ca/
self.progressHUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"MBCheckmark.png"]] autorelease];
self.progressHUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"MWPhotoBrowser.bundle/images/Checkmark.png"]] autorelease];
[self.view addSubview:_progressHUD];
}
return _progressHUD;
Expand Down

0 comments on commit b2ff8f0

Please sign in to comment.