Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Fix gloss still being added to app icons in iOS 7 *doh*
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Sep 25, 2013
1 parent d7f0a0a commit d7fdc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/BITUpdateViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ - (void)viewDidLoad {
addGloss = ![prerendered boolValue];
}

if (addGloss && ![self.updateManager isPreiOS7Environment]) {
if (addGloss && [self.updateManager isPreiOS7Environment]) {
_appStoreHeader.iconImage = [self addGlossToImage:[UIImage imageNamed:iconString]];
} else {
_appStoreHeader.iconImage = [UIImage imageNamed:iconString];
Expand Down

0 comments on commit d7fdc74

Please sign in to comment.