1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 10:15:45 +00:00

don't hide the inspector when double-clicking the table's action button

This commit is contained in:
Mitchell Livingston 2007-08-11 02:51:36 +00:00
parent 2e4d6a1142
commit c6c1f90996
2 changed files with 5 additions and 7 deletions

View file

@ -194,13 +194,10 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
[fDisplayedTorrents release]; [fDisplayedTorrents release];
[fBadger release]; [fBadger release];
if (fOverlayWindow)
[fOverlayWindow release]; [fOverlayWindow release];
[fIPCController release]; [fIPCController release];
if (fAutoImportedNames)
[fAutoImportedNames release]; [fAutoImportedNames release];
if (fPendingTorrentDownloads)
[fPendingTorrentDownloads release]; [fPendingTorrentDownloads release];
tr_close(fLib); tr_close(fLib);

View file

@ -181,8 +181,9 @@
{ {
if ([self pointInIconRect: point]) if ([self pointInIconRect: point])
[[fTorrents objectAtIndex: row] revealData]; [[fTorrents objectAtIndex: row] revealData];
else else if (![self pointInActionRect: point])
[fController showInfo: nil]; [fController showInfo: nil];
else;
} }
else; else;