From 5f114abd2c4ab4af37b325186b21ad43930fe05f Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Mon, 9 Mar 2009 11:43:27 +0100 Subject: [PATCH] clear screen only after getting song info to avoid flickering --- src/info.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/info.cpp b/src/info.cpp index 6255d349..963a1f92 100644 --- a/src/info.cpp +++ b/src/info.cpp @@ -100,8 +100,9 @@ void Info::GetSong() myScreen = this; RedrawHeader = 1; itsTitle = "Song info"; - w->Clear(); + w->Clear(0); PrepareSong(*s); + w->Window::Clear(); w->Flush(); } }