mirror of
https://github.com/objective-see/TaskExplorer.git
synced 2026-03-22 07:02:39 +00:00
added DNS resolution for remote endpoints
added DNS resolution into search updated 'flagged' items view, to use new main text scheme fixed bug in 'flagged' items view - where VT window wouldn't display
This commit is contained in:
@@ -607,32 +607,33 @@ bail:
|
||||
{
|
||||
//item
|
||||
// ->task, dylib, file, etc
|
||||
Binary* item = nil;
|
||||
Binary* binary = nil;
|
||||
|
||||
//for top pane
|
||||
// ->get task
|
||||
// ->get binary from task
|
||||
if(YES != self.isBottomPane)
|
||||
{
|
||||
//get task
|
||||
item = [(Task*)[self taskForRow:sender] binary];
|
||||
//get task's binary
|
||||
binary = [(Task*)[self taskForRow:sender] binary];
|
||||
}
|
||||
|
||||
//bottom pane
|
||||
// ->straight assign
|
||||
else
|
||||
{
|
||||
//get item
|
||||
item = (Binary*)[self itemForRow:sender];
|
||||
binary = (Binary*)[self itemForRow:sender];
|
||||
}
|
||||
|
||||
//bail on nil items
|
||||
if(nil == item)
|
||||
//bail on nil binaries
|
||||
if(nil == binary)
|
||||
{
|
||||
//bail
|
||||
goto bail;
|
||||
}
|
||||
|
||||
//alloc/init info window
|
||||
vtWindowController = [[VTInfoWindowController alloc] initWithItem:item];
|
||||
vtWindowController = [[VTInfoWindowController alloc] initWithItem:binary];
|
||||
|
||||
//show it
|
||||
[self.vtWindowController.windowController showWindow:self];
|
||||
|
||||
Reference in New Issue
Block a user