half-band tuning multiplier missing bandwidth state check

This commit is contained in:
Charles J. Cliffe 2015-12-13 17:26:19 -05:00
parent dbfedf56cb
commit 744db7ea98
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ void TuningCanvas::StepTuner(ActiveState state, int exponent, bool up) {
double exp = pow(10, exponent);
long long amount = up?exp:-exp;
if (halfBand) {
if (halfBand && state == TUNING_HOVER_BW) {
amount *= 2;
}