mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-31 13:12:30 -04:00
Allow waterfall clicks to set the Rx frequency in Super Hound mode only between 700 and 800 Hz.
This commit is contained in:
parent
d8f42ec965
commit
19ccf338af
@ -8571,7 +8571,8 @@ void MainWindow::setXIT(int n, Frequency base)
|
|||||||
void MainWindow::setFreq4(int rxFreq, int txFreq)
|
void MainWindow::setFreq4(int rxFreq, int txFreq)
|
||||||
{
|
{
|
||||||
if (m_mode=="ECHO") return; // we do not adjust rx/tx for echo mode -- always 1500Hz
|
if (m_mode=="ECHO") return; // we do not adjust rx/tx for echo mode -- always 1500Hz
|
||||||
if (ui->RxFreqSpinBox->isEnabled ()) ui->RxFreqSpinBox->setValue(rxFreq);
|
if (ui->RxFreqSpinBox->isEnabled () && !(SpecOp::HOUND==m_specOp && m_config.superFox() &&
|
||||||
|
(rxFreq < 700 or rxFreq > 800))) ui->RxFreqSpinBox->setValue(rxFreq);
|
||||||
if(m_mode=="WSPR" or m_mode=="FST4W") {
|
if(m_mode=="WSPR" or m_mode=="FST4W") {
|
||||||
ui->WSPRfreqSpinBox->setValue(txFreq);
|
ui->WSPRfreqSpinBox->setValue(txFreq);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user