From cf82fb333535270ef200d07b0522b4df587a7fa4 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 13 Jul 2016 23:13:42 +0000 Subject: [PATCH] Max report in MSK144 is now +24 dB. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6913 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 7fecb5c3b..a67a950cd 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3314,7 +3314,7 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl } if(m_mode=="MSK144" and m_bShMsgs) { if(rpt.toInt()<-4) n=-4; - if(rpt.toInt()>10) n=10; + if(rpt.toInt()>24) n=24; rpt=QString::number(n); } ui->rptSpinBox->setValue(n);