1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-17 16:50:26 +02:00

Don't draw 0 at top of spectrogram scale (bug in 8cf7d0b)

This commit is contained in:
Paul Licameli 2020-01-22 19:53:00 -05:00
parent 4a9c14bb38
commit 537ace493e

View File

@ -1108,7 +1108,7 @@ void Ruler::Update(
// Extreme values
if (mLabelEdges) {
updater.Tick( dc, 0, mMax, tickSizes, mFonts.major, majorOutputs );
updater.Tick( dc, 0, mMin, tickSizes, mFonts.major, majorOutputs );
updater.Tick( dc, mLength, mMax, tickSizes, mFonts.major, majorOutputs );
}