Fix #688 by moving the time display one line down when in karaoke mode.

Originally committed to SVN as r2209.
This commit is contained in:
Niels Martin Hansen 2008-06-21 18:34:57 +00:00
parent 025869468b
commit 36f19a9d42
1 changed files with 1 additions and 0 deletions

View File

@ -1431,6 +1431,7 @@ void AudioDisplay::OnMouseEvent(wxMouseEvent& event) {
int max = w - tw - 4;
if (dx > max) dx = max;
int dy = 4;
if (karMode) dy += th;
// Draw text
dc.SetTextForeground(wxColour(64,64,64));