Updated icon

This commit is contained in:
Ann Priestman 2018-12-07 15:05:18 -05:00
parent 62fe0a89d9
commit 712cf88763
3 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ public class ExtractedContent implements AutopsyVisitableItem {
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_DEVICE_INFO.getTypeID()) {
return filePath + "devices.png"; //NON-NLS
} else if (typeID == BlackboardArtifact.ARTIFACT_TYPE.TSK_VALIDATION_FAILED.getTypeID()) {
return filePath + "warning16.png"; //NON-NLS
return filePath + "validationFailed.png"; //NON-NLS
}
return filePath + "artifact-icon.png"; //NON-NLS
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 591 B

View File

@ -300,7 +300,7 @@ class ReportHTML implements TableReportModule {
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/devices.png"); //NON-NLS
break;
case TSK_VALIDATION_FAILED:
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/red-circle-exclamation.png"); //NON-NLS
in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/images/validationFailed.png"); //NON-NLS
break;
default:
logger.log(Level.WARNING, "useDataTypeIcon: unhandled artifact type = {0}", dataType); //NON-NLS