diff --git a/Source/NSFormCell.m b/Source/NSFormCell.m index 6b51d9740..7f0bba51e 100644 --- a/Source/NSFormCell.m +++ b/Source/NSFormCell.m @@ -203,11 +203,11 @@ static NSColor *shadowCol; NSSize titleSize = [_titleCell cellSize]; NSSize textSize; - if (_contents) + if ((_contents != nil) && ([_contents isEqualToString: @""] == NO)) textSize = [super cellSize]; else { - ASSIGN (_contents, @"minimum"); + ASSIGN (_contents, @"Minimum"); textSize = [super cellSize]; RELEASE (_contents); _contents = nil;