Only toggle status if that row is highlighted.

This commit is contained in:
Mitchell Livingston 2006-07-25 01:07:34 +00:00
parent dec8c54c3b
commit d4f3ac6ae2
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@
- (BOOL) pointInMinimalStatusRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0 || ![fDefaults boolForKey: @"SmallView"])
if (row < 0 || ![self isRowSelected: row] || ![fDefaults boolForKey: @"SmallView"])
return NO;
const STATUS_WIDTH = 130.0;