1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-07 23:51:14 +02:00

Add numbers on ruler back (if not DA)

This commit is contained in:
James Crook 2017-04-04 23:51:00 +01:00
parent b3ae50597e
commit fa62d80a21

View File

@ -575,7 +575,9 @@ void Meter::OnPaint(wxPaintEvent & WXUNUSED(event))
mRuler.SetTickColour( clrText );
dc.SetTextForeground( clrText );
// Draw the ruler
//mRuler.Draw(dc);
#ifndef EXPERIMENTAL_DA
mRuler.Draw(dc);
#endif
// Bitmap created...unselect
dc.SelectObject(wxNullBitmap);
@ -592,7 +594,7 @@ void Meter::OnPaint(wxPaintEvent & WXUNUSED(event))
destDC.SetTextForeground( clrText );
#if 0
#ifndef EXPERIMENTAL_DA
// We can have numbers over the bars, in which case we have to draw them each time.
if (mStyle == HorizontalStereoCompact || mStyle == VerticalStereoCompact)
{