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

After drawing stripes, restore the pen

This commit is contained in:
unknown 2015-06-01 18:35:39 -04:00
parent 8aea663882
commit d74e995024

View File

@ -1234,12 +1234,16 @@ void TrackArtist::DrawMinMaxRMS(wxDC &dc, const wxRect &r, const double env[],
}
}
}
// Restore the pen for remaining pixel columns!
dc.SetPen(muted ? muteSamplePen : samplePen);
}
else {
AColor::Line(dc, xx, r.y + h2, xx, r.y + h1);
}
}
// Stroke rms over the min-max
dc.SetPen(muted ? muteRmsPen : rmsPen);
for (int x = 0; x < r.width; x++) {
int xx = r.x + x;