Revert "Tentative fix to keep the transmitted signal report constant during a QSO. Please test!"

This reverts commit 70f460355b.
This commit is contained in:
Joe Taylor 2021-02-06 12:12:20 -05:00
parent 9782b0f98d
commit 2f4cf2f406
2 changed files with 1 additions and 7 deletions

View File

@ -4783,7 +4783,6 @@ void MainWindow::doubleClickOnCall(Qt::KeyboardModifiers modifiers)
void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifiers modifiers)
{
m_lastQSOProgress=m_QSOProgress;
// decode keyboard modifiers we are interested in
auto shift = modifiers.testFlag (Qt::ShiftModifier);
auto ctrl = modifiers.testFlag (Qt::ControlModifier);
@ -5189,11 +5188,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
rpt=QString::number(n);
}
qDebug() << "aa" << m_lastQSOProgress << m_QSOProgress << rpt << m_lastMessageSent.trimmed();
// Keep signal report fixed during a QSO.
if((m_lastQSOProgress < REPORT or m_lastQSOProgress > ROGER_REPORT) and
(m_QSOProgress==REPORT or m_QSOProgress==ROGER_REPORT)) ui->rptSpinBox->setValue(n);
ui->rptSpinBox->setValue(n);
// Don't genStdMsgs if we're already sending 73, or a "TU; " msg is queued.
m_bTUmsg=false; //### Temporary: disable use of "TU;" messages
if (!m_nTx73 and !m_bTUmsg) {

View File

@ -483,7 +483,6 @@ private:
qint32 m_earlyDecode=41;
qint32 m_earlyDecode2=47;
qint32 m_nDecodes=0;
qint32 m_lastQSOProgress=0;
bool m_btxok; //True if OK to transmit
bool m_diskData;