Skip to content

Commit

Permalink
Merge branch 'refs/heads/3.4/development'
Browse files Browse the repository at this point in the history
  • Loading branch information
bskinner committed Mar 11, 2014
2 parents fd48ec5 + 7dc164d commit 565ea13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Modules/People/PeopleDetailsTableViewCell.m
Expand Up @@ -3,6 +3,17 @@

@implementation PeopleDetailsTableViewCell

- (id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
self.detailTextLabel.lineBreakMode = UILineBreakModeWordWrap;
self.detailTextLabel.numberOfLines = 0;
return self;
}
return nil;
}

// this adjusts the height of the cell to fit contents
- (void) layoutSubviews {
[super layoutSubviews];
Expand All @@ -17,9 +28,6 @@ - (void) layoutSubviews {
self.detailTextLabel.frame.origin.y,
self.detailTextLabel.frame.size.width,
labelSize.height);

self.detailTextLabel.lineBreakMode = UILineBreakModeWordWrap;
self.detailTextLabel.numberOfLines = 0;
}

#pragma mark -
Expand Down
Binary file modified Resources/global/navbar_mit_logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/global/navbar_mit_logo@2x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 565ea13

Please sign in to comment.