mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Task Launcher - updated timeout feature to ignore interruptions
This commit is contained in:
parent
fb2a4a0363
commit
2cf9f7dded
11 changed files with 240 additions and 344 deletions
|
@ -115,10 +115,9 @@ public class DomainFileArchiveNode extends ArchiveNode {
|
|||
|
||||
@Override
|
||||
public Icon getIcon(boolean expanded) {
|
||||
DomainFile df = ((DomainFileArchive) archive).getDomainFile();
|
||||
|
||||
ImageIcon baseIcon = archive.getIcon(expanded);
|
||||
|
||||
BackgroundIcon bgIcon = new BackgroundIcon(24, 16, df.isVersioned());
|
||||
BackgroundIcon bgIcon = new BackgroundIcon(24, 16, isVersioned);
|
||||
MultiIcon multiIcon = new MultiIcon(bgIcon);
|
||||
multiIcon.addIcon(baseIcon);
|
||||
|
||||
|
|
|
@ -497,6 +497,16 @@ public class DummyTool implements Tool {
|
|||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStatusInfo(String text, boolean beep) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void clearStatusInfo() {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addAction(DockingActionIf action) {
|
||||
//do nothing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue