mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Fix broken capability for adding noise to Tx signal. This should go into v1.8.1!
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8250 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d2dc0fdb00
commit
dbce0cb8ee
@ -4694,9 +4694,11 @@ void MainWindow::on_tx5_currentTextChanged (QString const& text) //tx5 edited
|
||||
void MainWindow::on_tx6_editingFinished() //tx6 edited
|
||||
{
|
||||
QString t=ui->tx6->text().toUpper();
|
||||
QString t1=t.split(" ").at(1);
|
||||
m_CQtype="CQ";
|
||||
if(t1.size()==2) m_CQtype="CQ " + t1;
|
||||
if(t.indexOf(" ")>0) {
|
||||
QString t1=t.split(" ").at(1);
|
||||
m_CQtype="CQ";
|
||||
if(t1.size()==2) m_CQtype="CQ " + t1;
|
||||
}
|
||||
msgtype(t, ui->tx6);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user