Skip to content

Commit

Permalink
half-band tuning multiplier missing bandwidth state check
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcliffe committed Dec 13, 2015
1 parent dbfedf5 commit 744db7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/visual/TuningCanvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 744db7e

Please sign in to comment.