mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Merge pull request #315 from rcordovano/dir_tree_em_reset
Dir tree em reset
This commit is contained in:
commit
ca21e6c932
@ -280,6 +280,8 @@ public class FileManager implements Closeable {
|
||||
//added.add(localFileAdded);
|
||||
//send new content event
|
||||
//for now reusing ingest events, in future this will be replaced by datamodel / observer sending out events
|
||||
// @@@ Is this the right place for this? A directory tree refresh will be triggered, so this may be creating a race condition
|
||||
// since the transaction is not yet committed.
|
||||
IngestServices.getDefault().fireModuleContentEvent(new ModuleContentEvent(localFileAdded));
|
||||
}
|
||||
}
|
||||
|
@ -528,9 +528,26 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
|
||||
}
|
||||
} // changed current case
|
||||
else if (changed.equals(Case.CASE_CURRENT_CASE)) {
|
||||
|
||||
// case opened
|
||||
if (newValue != null) {
|
||||
// When a case is closed, the old value of this property is the
|
||||
// closed Case object and the new value is null. When a case is
|
||||
// opened, the old value is null and the new value is the new Case
|
||||
// object.
|
||||
// @@@ This needs to be revisited. Perhaps case closed and case
|
||||
// opened events instead of property change events would be a better
|
||||
// solution. Either way, more probably needs to be done to clean up
|
||||
// data model objects when a case is closed.
|
||||
if (oldValue != null && newValue == null) {
|
||||
// The current case has been closed. Reset the ExplorerManager.
|
||||
Node emptyNode = new AbstractNode(Children.LEAF);
|
||||
em.setRootContext(emptyNode);
|
||||
}
|
||||
else if (newValue != null) {
|
||||
// A new case has been opened. Reset the forward and back
|
||||
// buttons. Note that a call to CoreComponentControl.openCoreWindows()
|
||||
// by the new Case object will lead to a componentOpened() call
|
||||
// that will repopulate the tree.
|
||||
// @@@ The repopulation of the tree in this fashion also merits
|
||||
// reconsideration.
|
||||
resetHistory();
|
||||
}
|
||||
} // if the image is added to the case
|
||||
|
Loading…
x
Reference in New Issue
Block a user