From f9b5d5a865aeac71c982a76220390c8e3d0ab12f Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 2 Mar 2023 14:30:17 -0500 Subject: [PATCH] Shift+R should work only in Q65 mode, and not Q65-Pileup. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index c291f2657..1d6a5434f 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -2384,7 +2384,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e) if(m_send_RR73) on_txrb4_doubleClicked(); return; } - if(e->modifiers() & Qt::ShiftModifier) { + if((e->modifiers() & Qt::ShiftModifier) and m_specOp!=SpecOp::Q65_PILEUP and m_mode=="Q65") { m_fetched=0; readWidebandDecodes(); return;