mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-09-05 14:47:52 -04: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…
x
Reference in New Issue
Block a user