mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-26 21:58:37 -05:00
half-band tuning multiplier missing bandwidth state check
This commit is contained in:
parent
dbfedf56cb
commit
744db7ea98
@ -162,7 +162,7 @@ void TuningCanvas::StepTuner(ActiveState state, int exponent, bool up) {
|
|||||||
double exp = pow(10, exponent);
|
double exp = pow(10, exponent);
|
||||||
long long amount = up?exp:-exp;
|
long long amount = up?exp:-exp;
|
||||||
|
|
||||||
if (halfBand) {
|
if (halfBand && state == TUNING_HOVER_BW) {
|
||||||
amount *= 2;
|
amount *= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user