From 8207a72beca6c8315b1cf8842a432311a68edb16 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Fri, 30 Dec 2022 09:29:54 +0100 Subject: [PATCH] Make FT8 the default mode. --- widgets/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 6fa5515bf..a1af1ddb3 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -356,7 +356,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, m_appDir {QApplication::applicationDirPath ()}, m_cqStr {""}, m_palette {"Linrad"}, - m_mode {"JT9"}, + m_mode {"FT8"}, m_rpt {"-15"}, m_pfx { "1A", "1S", @@ -1273,7 +1273,7 @@ void MainWindow::readSettings() ui->actionSplit_ALL_TXT_yearly->setChecked(m_settings->value("splitAllTxtYearly", false).toBool()); ui->actionSplit_ALL_TXT_monthly->setChecked(m_settings->value("splitAllTxtMonthly", false).toBool()); ui->actionDisable_writing_of_ALL_TXT->setChecked(m_settings->value("disableWritingOfAllTxt", false).toBool()); - m_mode=m_settings->value("Mode","JT9").toString(); + m_mode=m_settings->value("Mode","FT8").toString(); ui->actionNone->setChecked(m_settings->value("SaveNone",true).toBool()); ui->actionSave_decoded->setChecked(m_settings->value("SaveDecoded",false).toBool()); ui->actionSave_all->setChecked(m_settings->value("SaveAll",false).toBool());