1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-10 01:17:43 +02:00

BLACK is the new WHITE (for split lines).

This commit is contained in:
James Crook 2017-06-30 21:45:19 +01:00
parent 46154d0dca
commit 0878de1dbb

View File

@ -1503,8 +1503,12 @@ void TrackArtist::DrawWaveform(const WaveTrack *track,
}
else {
delta = rect.height/3;
#ifdef EXPERIMENTAL_DA
// JKC Black does not show up enough.
dc.SetPen(*wxWHITE_PEN);
#else
dc.SetPen(*wxBLACK_PEN);
#endif
}
AColor::Line(dc, (int) (rect.x + xx), rect.y+delta, (int) (rect.x + xx), rect.y - delta + rect.height);
dc.SetPen(*wxGREY_PEN);