Skip to content

Commit

Permalink
prevent details from showing in results when the rows aren't tall enough
Browse files Browse the repository at this point in the history
  • Loading branch information
skurfer authored and pjrobertson committed Oct 29, 2012
1 parent 8c83ce1 commit 796c91f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Quicksilver/Code-QuickStepInterface/QSResultController.m
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,9 @@ - (void)setupResultTable {

QSObjectCell *objectCell = [[[QSObjectCell alloc] init] autorelease];
tableColumn = [resultTable tableColumnWithIdentifier: COLUMNID_NAME];
if ([resultTable rowHeight] < 34.0) {
[objectCell setShowDetails:NO];
}
[tableColumn setDataCell:objectCell];

tableColumn = [resultChildTable tableColumnWithIdentifier: COLUMNID_NAME];
Expand Down

0 comments on commit 796c91f

Please sign in to comment.