correct notifications about fetching albums

This commit is contained in:
Andrzej Rybczak
2009-05-03 22:49:55 +02:00
parent 6177d49f9f
commit 4429d50401
2 changed files with 2 additions and 2 deletions

View File

@@ -227,7 +227,7 @@ void MediaLibrary::Update()
else if (hasTwoColumns && Albums->Empty() && Songs->Empty())
{
TagList artists;
*Albums << XY(0, 0) << "Fetching albums' list...";
*Albums << XY(0, 0) << "Fetching albums...";
Albums->Window::Refresh();
Mpd->GetList(artists, Config.media_lib_primary_tag);
for (TagList::const_iterator i = artists.begin(); i != artists.end(); i++)

View File

@@ -418,7 +418,7 @@ void TagEditor::Update()
TagList list;
if (Config.albums_in_tag_editor)
{
*Albums << XY(0, 0) << "Fetching albums' list...";
*Albums << XY(0, 0) << "Fetching albums...";
Albums->Window::Refresh();
Mpd->GetAlbums("", list);
for (TagList::const_iterator it = list.begin(); it != list.end(); it++)