mirror of
https://github.com/transmission/transmission
synced 2025-03-03 02:05:19 +00:00
don't hide the inspector when double-clicking the table's action button
This commit is contained in:
parent
2e4d6a1142
commit
c6c1f90996
2 changed files with 5 additions and 7 deletions
|
@ -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);
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue