settings.getNumberOfDays(), settings.getTimeslotsPerDay()));
if (ret != JOptionPane.OK_OPTION)
return;
track2allData.changeSettings();
ApplicationWindow aw = getApplicationWindow();
final StatusBar bar = aw.getStatusBar();
try {
if (download) {
// see MySwingWorker.construct -> it could be that site is not accessible
// -> then the ui should not freeze
} else {
JFileChooser fc = new JFileChooser();
fc.setDialogTitle(tr.get(ID + ".fileDialog"));
int resultFC = fc.showOpenDialog(aw.getControl());
if (resultFC != JFileChooser.APPROVE_OPTION) {
bar.setMessage(tr.get(ID + ".noFileSelected"));
return;
}
file = fc.getSelectedFile();