mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-07-16 07:44:42 -04:00
Split SuperFox ";" messages into two lines in the right text window.
This commit is contained in:
@@ -4985,7 +4985,7 @@ void MainWindow::guiUpdate()
|
||||
write_all("Tx",m_currentMessage);
|
||||
if (m_config.TX_messages () and m_mode!="Echo") {
|
||||
ui->decodedTextBrowser2->displayTransmittedText(m_currentMessage.trimmed(),m_mode,
|
||||
ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod);
|
||||
ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod,m_config.superFox());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5088,7 +5088,7 @@ void MainWindow::guiUpdate()
|
||||
if (m_config.TX_messages () && !m_tune && SpecOp::FOX!=m_specOp)
|
||||
{
|
||||
ui->decodedTextBrowser2->displayTransmittedText(current_message.trimmed(),
|
||||
m_mode,ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod);
|
||||
m_mode,ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod,m_config.superFox());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10541,10 +10541,10 @@ void MainWindow::foxGenWaveform(int i,QString fm)
|
||||
int nfreq=ui->TxFreqSpinBox->value()+60*i;
|
||||
if(m_config.superFox()) nfreq=750;
|
||||
ui->decodedTextBrowser2->displayTransmittedText(fm.trimmed(), txModeArg,
|
||||
nfreq,m_bFastMode,m_TRperiod);
|
||||
nfreq,m_bFastMode,m_TRperiod,m_config.superFox());
|
||||
if (SpecOp::FOX==m_specOp && m_config.superFox() && ui->cbSendMsg->isChecked())
|
||||
ui->decodedTextBrowser2->displayTransmittedText(m_freeTextMsg0, txModeArg,
|
||||
nfreq,m_bFastMode,m_TRperiod);
|
||||
nfreq,m_bFastMode,m_TRperiod,m_config.superFox());
|
||||
foxcom_.i3bit[i]=0;
|
||||
if(fm.indexOf("<")>0) foxcom_.i3bit[i]=1;
|
||||
strncpy(&foxcom_.cmsg[i][0],fm.toLatin1(),40); //Copy this message into cmsg[i]
|
||||
|
||||
Reference in New Issue
Block a user