refresh window after lyrics/artist info was (not) downloaded

This commit is contained in:
Andrzej Rybczak
2009-09-18 01:46:53 +00:00
parent e6a64b9c63
commit 7c9363c174
2 changed files with 2 additions and 1 deletions

View File

@@ -79,9 +79,9 @@ void Info::Update()
{
if (!ArtistReady)
return;
pthread_join(*Downloader, 0);
w->Flush();
w->Refresh();
delete Downloader;
Downloader = 0;
ArtistReady = 0;

View File

@@ -302,6 +302,7 @@ void Lyrics::Take()
return;
pthread_join(*Downloader, 0);
w->Flush();
w->Refresh();
delete Downloader;
Downloader = 0;
Ready = 0;