diff --git a/src/Train/ErgDBDownloadDialog.cpp b/src/Train/ErgDBDownloadDialog.cpp index a76c24f38..2bcc03991 100644 --- a/src/Train/ErgDBDownloadDialog.cpp +++ b/src/Train/ErgDBDownloadDialog.cpp @@ -67,7 +67,7 @@ ErgDBDownloadDialog::ErgDBDownloadDialog(Context *context) : QDialog(context->ma // selector QCheckBox *checkBox = new QCheckBox("", this); - checkBox->setChecked(true); + checkBox->setChecked(false); files->setItemWidget(add, 0, checkBox); add->setText(1, item.name); @@ -83,7 +83,7 @@ ErgDBDownloadDialog::ErgDBDownloadDialog(Context *context) : QDialog(context->ma } all = new QCheckBox(tr("check/uncheck all"), this); - all->setChecked(true); + all->setChecked(false); // buttons QHBoxLayout *buttons = new QHBoxLayout; diff --git a/src/Train/ErgFile.cpp b/src/Train/ErgFile.cpp index f118a2865..d0658e38e 100644 --- a/src/Train/ErgFile.cpp +++ b/src/Train/ErgFile.cpp @@ -43,6 +43,7 @@ static bool setSupported() ::supported << ".gpx"; ::supported << ".tts"; ::supported << ".json"; + ::supported << ".erg2"; return true; }