mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
3350 move call to openCase when double clicking off EDT
This commit is contained in:
parent
96b44045f5
commit
0209d81d82
@ -593,7 +593,9 @@ final class MultiUserCasesPanel extends javax.swing.JPanel {
|
|||||||
int modelRow = casesTable.convertRowIndexToModel(casesTable.getSelectedRow());
|
int modelRow = casesTable.convertRowIndexToModel(casesTable.getSelectedRow());
|
||||||
String caseDirectory = (String) caseTableModel.getValueAt(modelRow, COLUMN_HEADERS.OUTPUTFOLDER.ordinal());
|
String caseDirectory = (String) caseTableModel.getValueAt(modelRow, COLUMN_HEADERS.OUTPUTFOLDER.ordinal());
|
||||||
Path caseMetadataFilePath = Paths.get(caseDirectory, (String) caseTableModel.getValueAt(modelRow, COLUMN_HEADERS.METADATA_FILE.ordinal()));
|
Path caseMetadataFilePath = Paths.get(caseDirectory, (String) caseTableModel.getValueAt(modelRow, COLUMN_HEADERS.METADATA_FILE.ordinal()));
|
||||||
openCase(caseMetadataFilePath);
|
new Thread(() -> {
|
||||||
|
openCase(caseMetadataFilePath);
|
||||||
|
}).start();
|
||||||
}
|
}
|
||||||
}//GEN-LAST:event_casesTableMouseClicked
|
}//GEN-LAST:event_casesTableMouseClicked
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user