Merge branch '2198-RunIngestModulesWizard' of https://github.com/wschaeferB/autopsy into 2199-ProfilesInAddDataWizard

This commit is contained in:
William Schaefer 2017-02-14 17:08:31 -05:00
commit cd606317eb

View File

@ -60,6 +60,8 @@ import org.sleuthkit.autopsy.modules.interestingitems.FilesSetsManager;
*/
public final class IngestJobSettingsPanel extends javax.swing.JPanel {
@Messages("IngestJobSettingsPanel.name.text=Configure Ingest Modules")
private static final long serialVersionUID = 1L;
private static ImageIcon warningIcon = new ImageIcon(IngestJobSettingsPanel.class.getResource("/org/sleuthkit/autopsy/images/warning_triangle.png"));
private static ImageIcon infoIcon = new ImageIcon(IngestJobSettingsPanel.class.getResource("/org/sleuthkit/autopsy/images/information-frame.png"));
@ -84,7 +86,6 @@ public final class IngestJobSettingsPanel extends javax.swing.JPanel {
initComponents();
customizeComponents();
fileIngestFilterComboBox.setSelectedItem(settings.getFileIngestFilter().getName());
this.setName("Configure Ingest Modules");
}
/**
@ -184,6 +185,7 @@ public final class IngestJobSettingsPanel extends javax.swing.JPanel {
* and jobs for which to display the history.
*/
pastJobsButton.setEnabled(!dataSources.isEmpty() && !ingestJobs.isEmpty());
this.setName(Bundle.IngestJobSettingsPanel_name_text());
}
void setPastJobsButtonVisible(boolean isVisible) {