diff --git a/frontend/journalSourcesDialog.cpp b/frontend/journalSourcesDialog.cpp index b9850139..fc5d7f7a 100644 --- a/frontend/journalSourcesDialog.cpp +++ b/frontend/journalSourcesDialog.cpp @@ -37,9 +37,9 @@ void JournalSourcesDialog::currentSourceChanged(const QModelIndex ¤tIndex, // Update individual controls // -- Type if (currentSource_->type() == JournalSource::IndexingType::Network) - ui_.NetworkTypeRadioButton->setEnabled(true); + ui_.NetworkTypeRadioButton->setChecked(true); else - ui_.GeneratedTypeRadioButton->setEnabled(true); + ui_.GeneratedTypeRadioButton->setChecked(true); // -- Journal Location ui_.JournalRootURLEdit->setText(currentSource_->journalRootUrl()); ui_.JournalIndexFileEdit->setText(currentSource_->journalIndexFilename());