Merge pull request #3325 from wschaeferB/3350-DoublClickOpenOffEdt

3350 move call to openCase when double clicking off EDT
This commit is contained in:
Richard Cordovano 2017-12-15 13:18:25 -05:00 committed by GitHub
commit 78f15c7af6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -593,7 +593,9 @@ final class MultiUserCasesPanel extends javax.swing.JPanel {
int modelRow = casesTable.convertRowIndexToModel(casesTable.getSelectedRow());
String caseDirectory = (String) caseTableModel.getValueAt(modelRow, COLUMN_HEADERS.OUTPUTFOLDER.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