From 36f19a9d4234d462ab7fd018d53afbf380611dd0 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sat, 21 Jun 2008 18:34:57 +0000 Subject: [PATCH] Fix #688 by moving the time display one line down when in karaoke mode. Originally committed to SVN as r2209. --- aegisub/audio_display.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/audio_display.cpp b/aegisub/audio_display.cpp index c0cf995ef..41ae1821e 100644 --- a/aegisub/audio_display.cpp +++ b/aegisub/audio_display.cpp @@ -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));