diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 77bf94893..ae8766572 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -2251,6 +2251,13 @@ void MainWindow::keyPressEvent (QKeyEvent * e) bool bAltF1F6=m_config.alternate_bindings(); switch(e->key()) { + case Qt::Key_A: + if(m_mode=="Q65" && e->modifiers() & Qt::AltModifier) { + m_EMECall.clear(); + qmapcom.ndecodes=0; + readWidebandDecodes(); + } + return; case Qt::Key_B: if(m_mode=="FT4" && e->modifiers() & Qt::AltModifier) { on_pbBestSP_clicked(); @@ -3259,6 +3266,7 @@ void MainWindow::on_actionKeyboard_shortcuts_triggered()