Skip to content

Commit

Permalink
Remove brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
zenangst committed Sep 8, 2015
1 parent b3d34c2 commit 759d560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Cells/Text/FORMTextFieldCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ - (CGRect)textFieldFrame {
}

- (void)showTooltip {
if (self.field.info && [self.field.info length] > 0 && self.showTooltips) {
if (self.field.info && self.field.info.length > 0 && self.showTooltips) {
self.tooltipView.alpha = 0.0f;
[self.contentView addSubview:self.tooltipView];
self.tooltipView.frame = [self tooltipViewFrame];
Expand Down

0 comments on commit 759d560

Please sign in to comment.