mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-09 14:16:28 +01:00
Bug 68 - Vertical scale only has zeros when displaying Waveform (dB) view at -48 dB
This commit is contained in:
@@ -614,7 +614,7 @@ wxString Ruler::LabelString(double d, bool major)
|
||||
wxString s;
|
||||
|
||||
// Replace -0 with 0
|
||||
if (d < 0.0 && d+mMinor > 0.0)
|
||||
if (d < 0.0 && (d+mMinor > 0.0) && ( mFormat != RealLogFormat ))
|
||||
d = 0.0;
|
||||
|
||||
switch(mFormat) {
|
||||
|
||||
Reference in New Issue
Block a user