mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-23 04:28:36 -04:00
Disble Ctrl+A. ESC now stops Tx, aborts QSO, and clears the nextCall queue.
This commit is contained in:
parent
6d25c45d9f
commit
64b2d85f44
@ -1811,9 +1811,6 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
|
||||
}
|
||||
}
|
||||
break;
|
||||
case Qt::Key_Escape:
|
||||
on_stopTxButton_clicked();
|
||||
return;
|
||||
case Qt::Key_F1:
|
||||
on_actionOnline_User_Guide_triggered();
|
||||
return;
|
||||
@ -1867,11 +1864,13 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
|
||||
}
|
||||
}
|
||||
return;
|
||||
case Qt::Key_A:
|
||||
if(e->modifiers() & Qt::ControlModifier) {
|
||||
abortQSO();
|
||||
return;
|
||||
}
|
||||
case Qt::Key_Escape:
|
||||
m_nextCall="";
|
||||
ui->labNextCall->setStyleSheet("");
|
||||
ui->labNextCall->setText("");
|
||||
on_stopTxButton_clicked();
|
||||
abortQSO();
|
||||
return;
|
||||
case Qt::Key_X:
|
||||
if(e->modifiers() & Qt::AltModifier) {
|
||||
foxTest();
|
||||
|
Loading…
Reference in New Issue
Block a user