return;
}
// Show the dialog
DlgExportSimulation dlg = new DlgExportSimulation(this, project);
dlg.setVisible(true);
// If the user has pressed OK then get the selected traffic layers and
// export them
if (dlg.getAnswer() == JOptionPane.OK_OPTION) {
List<TrafficDefinitionLayer> layersToExport = dlg.getSelectedLayers();
try {
setCursor(Cursor.WAIT_CURSOR);
SimulationExporter.ExportSimulation(project, layersToExport);