mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-02 21:27:52 -04:00
Correct the "dB" message on Tab 2 when MyCall is a compound callsign.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4485 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
449605f694
commit
8a4bf4108c
@ -2598,7 +2598,11 @@ void MainWindow::on_pbCallCQ_clicked()
|
|||||||
void MainWindow::on_pbAnswerCaller_clicked()
|
void MainWindow::on_pbAnswerCaller_clicked()
|
||||||
{
|
{
|
||||||
genStdMsgs(m_rpt);
|
genStdMsgs(m_rpt);
|
||||||
ui->genMsg->setText(ui->tx2->text());
|
QString t=ui->tx3->text();
|
||||||
|
int i0=t.indexOf(" R-");
|
||||||
|
if(i0<0) i0=t.indexOf(" R+");
|
||||||
|
t=t.mid(0,i0+1)+t.mid(i0+2,3);
|
||||||
|
ui->genMsg->setText(t);
|
||||||
m_ntx=7;
|
m_ntx=7;
|
||||||
ui->rbGenMsg->setChecked(true);
|
ui->rbGenMsg->setChecked(true);
|
||||||
if(m_transmitting) m_restart=true;
|
if(m_transmitting) m_restart=true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user