mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
Added code to prevent selection of 'Make Timeline' (from Tools menu) from
running timeline again and opening additional windows.
This commit is contained in:
parent
557213f07c
commit
f3bf8d0b9a
@ -970,6 +970,11 @@ public class Simile2 extends CallableSystemAction implements Presenter.Toolbar,
|
||||
} else {
|
||||
logger.log(Level.INFO, "Beginning generation of timeline");
|
||||
|
||||
// if the timeline window is already open, do nothing
|
||||
if (jf != null && jf.isVisible()) {
|
||||
return;
|
||||
}
|
||||
|
||||
Platform.setImplicitExit(false);
|
||||
|
||||
// listen for case changes (specifically images being added).
|
||||
|
Loading…
x
Reference in New Issue
Block a user