1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 16:40:07 +02:00

Bug 1832: Fix adjusting time track when in logarithmic scale

The typo that caused this appears to have been introduced when this code was restructured in 9e0010ec5f.
This commit is contained in:
Pokechu22 2018-10-02 15:54:20 -07:00 committed by Paul Licameli
parent a17af37c1e
commit 565fef2ba9

View File

@ -60,7 +60,7 @@ namespace {
zoomMin = tt.GetRangeLower(), zoomMax = tt.GetRangeUpper();
if (dB) {
// MB: silly way to undo the work of GetWaveYPos while still getting a logarithmic scale
zoomMin = LINEAR_TO_DB(std::max(1.0e-7, double(dBRange))) / dBRange + 1.0;
zoomMin = LINEAR_TO_DB(std::max(1.0e-7, double(zoomMin))) / dBRange + 1.0;
zoomMax = LINEAR_TO_DB(std::max(1.0e-7, double(zoomMax))) / dBRange + 1.0;
}
}