mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 12:23:37 -05:00
This change allows Esc or F4 to clear the messages when a Next caller is queued up.
This commit is contained in:
parent
0c3b4c173e
commit
fce13d2a82
@ -4678,7 +4678,7 @@ void MainWindow::abortQSO()
|
|||||||
{
|
{
|
||||||
bool b=m_auto;
|
bool b=m_auto;
|
||||||
clearDX();
|
clearDX();
|
||||||
if(b and !m_auto) auto_tx_mode(true);
|
if(b) auto_tx_mode(false);
|
||||||
ui->txrb6->setChecked(true);
|
ui->txrb6->setChecked(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4709,9 +4709,10 @@ bool MainWindow::stdCall(QString w)
|
|||||||
|
|
||||||
void MainWindow::genStdMsgs(QString rpt, bool unconditional)
|
void MainWindow::genStdMsgs(QString rpt, bool unconditional)
|
||||||
{
|
{
|
||||||
if(ui->tx3->text().left(4)=="TU; ") {
|
// Seems to prevent abortQSO from working when a TU; message is already queue// Seems to prevent abortQSO from working when a TU; message is already queued
|
||||||
return;
|
// if(ui->tx3->text().left(4)=="TU; ") {
|
||||||
}
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
genCQMsg ();
|
genCQMsg ();
|
||||||
auto const& hisCall=ui->dxCallEntry->text();
|
auto const& hisCall=ui->dxCallEntry->text();
|
||||||
|
Loading…
Reference in New Issue
Block a user