From d4f3ac6ae216a3f542f36372460464769b5f218b Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Tue, 25 Jul 2006 01:07:34 +0000 Subject: [PATCH] Only toggle status if that row is highlighted. --- macosx/TorrentTableView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/TorrentTableView.m b/macosx/TorrentTableView.m index 89f913545..ae30ce911 100644 --- a/macosx/TorrentTableView.m +++ b/macosx/TorrentTableView.m @@ -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;