From deaa456383bdd0ab23a0909266566eab829c6907 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Mon, 24 Aug 2009 00:40:08 +0200 Subject: [PATCH] redraw white line after message is gone if alternative ui is active --- src/status.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/status.cpp b/src/status.cpp index 770391e9..d7788547 100644 --- a/src/status.cpp +++ b/src/status.cpp @@ -144,7 +144,12 @@ void TraceMpdStatus() block_progressbar_update = !allow_statusbar_unlock; if (Mpd.GetState() < psPlay && !block_statusbar_update) - Statusbar() << wclrtoeol; + { + if (Config.new_design) + mvwhline(wFooter->Raw(), 0, 0, 0, wFooter->GetWidth()); + else + Statusbar() << wclrtoeol; + } } } }