mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-16 01:37:43 +00:00
added fucntion per Brian request
This commit is contained in:
parent
afbfeefff5
commit
fe1667b8df
@ -129,9 +129,7 @@ final public class FiltersPanel extends JPanel {
|
|||||||
public FiltersPanel() {
|
public FiltersPanel() {
|
||||||
initComponents();
|
initComponents();
|
||||||
|
|
||||||
CheckBoxIconPanel panel = createAccoutTypeCheckBoxPanel(Account.Type.DEVICE, true);
|
initalizeDeviceAccountType();
|
||||||
accountTypeMap.put(Account.Type.DEVICE, panel.getCheckBox());
|
|
||||||
accountTypeListPane.add(panel);
|
|
||||||
|
|
||||||
deviceRequiredLabel.setVisible(false);
|
deviceRequiredLabel.setVisible(false);
|
||||||
accountTypeRequiredLabel.setVisible(false);
|
accountTypeRequiredLabel.setVisible(false);
|
||||||
@ -261,10 +259,7 @@ final public class FiltersPanel extends JPanel {
|
|||||||
accountTypeMap.clear();
|
accountTypeMap.clear();
|
||||||
accountTypeListPane.removeAll();
|
accountTypeListPane.removeAll();
|
||||||
|
|
||||||
CheckBoxIconPanel panel = createAccoutTypeCheckBoxPanel(Account.Type.DEVICE, true);
|
initalizeDeviceAccountType();
|
||||||
accountTypeMap.put(Account.Type.DEVICE, panel.getCheckBox());
|
|
||||||
accountTypeListPane.add(panel);
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -275,6 +270,12 @@ final public class FiltersPanel extends JPanel {
|
|||||||
IngestManager.getInstance().removeIngestJobEventListener(ingestJobListener);
|
IngestManager.getInstance().removeIngestJobEventListener(ingestJobListener);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void initalizeDeviceAccountType() {
|
||||||
|
CheckBoxIconPanel panel = createAccoutTypeCheckBoxPanel(Account.Type.DEVICE, true);
|
||||||
|
accountTypeMap.put(Account.Type.DEVICE, panel.getCheckBox());
|
||||||
|
accountTypeListPane.add(panel);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Populate the Account Types filter widgets
|
* Populate the Account Types filter widgets
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user