Skip to content

Commit

Permalink
Resize textLabel's frame for bigger letters
Browse files Browse the repository at this point in the history
  • Loading branch information
alexleutgoeb committed Nov 12, 2011
1 parent ab37213 commit dd1f817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/ALPickerViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ - (void)layoutSubviews {
[super layoutSubviews];

self.imageView.frame = CGRectMake(15, 12, 18, 18);
self.textLabel.frame = CGRectMake(44, 12, self.frame.size.width - 54, 18);
self.textLabel.frame = CGRectMake(44, 9, self.frame.size.width - 54, 24);
}

@end

0 comments on commit dd1f817

Please sign in to comment.