diff --git a/mainwindow.cpp b/mainwindow.cpp index aa07a8c3a..66a2c2220 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1898,7 +1898,8 @@ void MainWindow::bumpFqso(int n) //bumpFqso() int i; bool ctrl = (n>=100); n=n%100; - i=ui->RxFreqSpinBox->value (); + i=ui->RxFreqSpinBox->value(); + bool bTrackTx=ui->TxFreqSpinBox->value() == i; if(n==11) i--; if(n==12) i++; if (ui->RxFreqSpinBox->isEnabled ()) { @@ -1907,7 +1908,7 @@ void MainWindow::bumpFqso(int n) //bumpFqso() if(ctrl and m_mode.startsWith ("WSPR")) { ui->WSPRfreqSpinBox->setValue(i); } else { - if(ctrl) { + if(ctrl and bTrackTx) { ui->TxFreqSpinBox->setValue (i); } } diff --git a/shortcuts.txt b/shortcuts.txt index 2acb7bf1a..61da9debf 100644 --- a/shortcuts.txt +++ b/shortcuts.txt @@ -11,10 +11,10 @@ Shift+F6 Decode all remaining files in directrory F7 Display Message Averaging window F11 Move Rx frequency down 1 Hz - Ctrl+F11 Move Rx and Tx frequencies down 1 Hz + Ctrl+F11 Move identical Rx and Tx frequencies down 1 Hz Shift+F11 Move Tx frequency down 60 Hz F12 Move Rx frequency up 1 Hz - Ctrl+F12 Move Rx and Tx frequencies up 1 Hz + Ctrl+F12 Move identical Rx and Tx frequencies up 1 Hz Shift+F12 Move Tx frequency up 60 Hz Alt+1-6 Set now transmission to this number on Tab 1 Ctl+1-6 Set next transmission to this number on Tab 1