Skip to content

Commit

Permalink
Fixed lineHeight not being set due to missing call to setFont (regres…
Browse files Browse the repository at this point in the history
…sion from 34dd9ac)
  • Loading branch information
kainjow committed Nov 26, 2014
1 parent e63645d commit 710c985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/sources/HFController.m
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ - (instancetype)init {
_hfflags.showcallouts = YES;
_hfflags.selectable = YES;
representers = [[NSMutableArray alloc] init];
_font = [[NSFont fontWithName:HFDEFAULT_FONT size:HFDEFAULT_FONTSIZE] retain];
[self setFont:[NSFont fontWithName:HFDEFAULT_FONT size:HFDEFAULT_FONTSIZE]];
return self;
}

Expand Down

0 comments on commit 710c985

Please sign in to comment.