diff --git a/NEWS b/NEWS
index d97e07957..8b925637a 100644
--- a/NEWS
+++ b/NEWS
@@ -75,6 +75,8 @@ Improvements to SuperFox/Hound operation:
750 Hz. The previously selected frequency is saved and restored
afterwards.
+ - Right-clicking on the H button now activates/deactivates SuperFox mode.
+
- A flaw resulting in sub-optimal SuperFox QSO rates has been
corrected.
diff --git a/Release_Notes.txt b/Release_Notes.txt
index dbb7a54d1..4c2db2898 100644
--- a/Release_Notes.txt
+++ b/Release_Notes.txt
@@ -75,6 +75,8 @@ Improvements to SuperFox/Hound operation:
750 Hz. The previously selected frequency is saved and restored
afterwards.
+ - Right-clicking on the H button now activates/deactivates SuperFox mode.
+
- A flaw resulting in sub-optimal SuperFox QSO rates has been
corrected.
diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp
index b29fb2eff..9911405ba 100644
--- a/widgets/mainwindow.cpp
+++ b/widgets/mainwindow.cpp
@@ -6987,12 +6987,12 @@ void MainWindow::mousePressEvent(QMouseEvent *event)
on_actionJT9_triggered();
ui->jt65Button->clearFocus();
}
- if(ui->ft8Button->hasFocus() && (event->button() & Qt::RightButton)) { // toggle SuperFox mode
+ if(ui->houndButton->hasFocus() && (event->button() & Qt::RightButton)) { // toggle SuperFox mode
keep_frequency = true;
m_config.toggle_SF();
QTimer::singleShot (250, [=] {keep_frequency = false;});
on_actionFT8_triggered();
- ui->ft8Button->clearFocus();
+ ui->houndButton->clearFocus();
ui->labDXped->setStyleSheet("QLabel {background-color: red; color: white;}");
}
}
@@ -11428,7 +11428,7 @@ void MainWindow::on_houndButton_clicked (bool checked)
void MainWindow::on_ft8Button_clicked()
{
- if (m_specOp==SpecOp::HOUND) {
+ if (m_specOp==SpecOp::HOUND or m_specOp==SpecOp::FOX) {
m_config.setSpecial_None();
m_specOp=m_config.special_op_id();
}
diff --git a/widgets/mainwindow.ui b/widgets/mainwindow.ui
index c75d59342..f5179a28a 100644
--- a/widgets/mainwindow.ui
+++ b/widgets/mainwindow.ui
@@ -2937,7 +2937,7 @@ QLabel[oob="true"] {
- Toggle FT8 hound mode On/Off
+ Toggle FT8 hound mode On/Off.<br>Right-click to activate or deactivate SuperFox mode.
QPushButton:checked {
@@ -2970,7 +2970,7 @@ QLabel[oob="true"] {
Qt::StrongFocus
- Switch to FT8 mode.<br> Right-click to toggle SuperFox mode On/Off.
+ Switch to FT8 mode.
FT8