Skip to content

Commit

Permalink
Stop downscaling images in thread tag picker.
Browse files Browse the repository at this point in the history
Simply an oversight; there never was a good reason to scale them to 98%.
  • Loading branch information
nolanw committed May 25, 2013
1 parent 8bf4623 commit e5edc20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Thread Tags/AwfulPostIconPickerController.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ @implementation AwfulPostIconPickerController
- (instancetype)initWithDelegate:(id <AwfulPostIconPickerControllerDelegate>)delegate
{
PSUICollectionViewFlowLayout *layout = [PSUICollectionViewFlowLayout new];
layout.itemSize = CGSizeMake(47, 47);
layout.minimumInteritemSpacing = 15;
layout.itemSize = CGSizeMake(49, 49);
layout.minimumInteritemSpacing = 13;
layout.minimumLineSpacing = 11;
layout.sectionInset = UIEdgeInsetsMake(12, 12, 12, 12);
if (!(self = [super initWithCollectionViewLayout:layout])) return nil;
Expand Down

0 comments on commit e5edc20

Please sign in to comment.