don't hide the inspector when double-clicking the table's action button
This commit is contained in:
parent
2e4d6a1142
commit
c6c1f90996
|
@ -194,14 +194,11 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
|
|||
[fDisplayedTorrents release];
|
||||
|
||||
[fBadger release];
|
||||
if (fOverlayWindow)
|
||||
[fOverlayWindow release];
|
||||
[fOverlayWindow release];
|
||||
[fIPCController release];
|
||||
|
||||
if (fAutoImportedNames)
|
||||
[fAutoImportedNames release];
|
||||
if (fPendingTorrentDownloads)
|
||||
[fPendingTorrentDownloads release];
|
||||
[fAutoImportedNames release];
|
||||
[fPendingTorrentDownloads release];
|
||||
|
||||
tr_close(fLib);
|
||||
[super dealloc];
|
||||
|
|
|
@ -181,8 +181,9 @@
|
|||
{
|
||||
if ([self pointInIconRect: point])
|
||||
[[fTorrents objectAtIndex: row] revealData];
|
||||
else
|
||||
else if (![self pointInActionRect: point])
|
||||
[fController showInfo: nil];
|
||||
else;
|
||||
}
|
||||
else;
|
||||
|
||||
|
|
Loading…
Reference in New Issue