Forgot to use the correct user-defined colour for cursor drawing in the last commit.

Originally committed to SVN as r4064.
This commit is contained in:
Amar Takhar 2010-01-28 19:16:29 +00:00
parent 44ba0a4e43
commit d92437b4b4
1 changed files with 1 additions and 1 deletions

View File

@ -1340,7 +1340,7 @@ void AudioDisplay::OnPaint(wxPaintEvent& event) {
if (player && !player->IsPlaying())
playbackCursorPos = -1;
if (playbackCursorPos >= 0) {
dc.SetPen(wxPen(wxColour(255,255,255)));
dc.SetPen(wxPen(Options.AsColour(_T("Audio Play cursor"))));
dc.DrawLine(playbackCursorPos,0,playbackCursorPos,h);
}
#endif