fix non refreshing columns (selection in medialib)

This commit is contained in:
Frank Blendinger
2010-01-31 00:17:35 +01:00
parent 5701853d3a
commit c10a2a6db7

View File

@@ -329,9 +329,15 @@ void MediaLibrary::SpacePressed()
if (Config.space_selects)
{
if (w == Artists)
{
Artists->Select(Artists->Choice(), !Artists->isSelected());
Albums->Clear();
}
else if (w == Albums)
{
Albums->Select(Albums->Choice(), !Albums->isSelected());
Songs->Clear();
}
else if (w == Songs)
Songs->Select(Songs->Choice(), !Songs->isSelected());
w->Scroll(wDown);