More zoom tweaks, fix half-band tuner step

This commit is contained in:
Charles J. Cliffe
2015-12-13 14:09:04 -05:00
parent d448f6dfc4
commit be8cde6ce3
2 changed files with 14 additions and 12 deletions
+1 -1
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 && exp == 1) {
if (halfBand) {
amount *= 2;
}