redraw white line after message is gone if alternative ui is active

This commit is contained in:
Andrzej Rybczak
2009-08-24 00:40:08 +02:00
parent 195d8b4e34
commit deaa456383

View File

@@ -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;
}
}
}
}