# HG changeset patch # User nenolod # Date 1160063713 25200 # Node ID cf41677e2d7c6857fcc4a2e946b8fdd9d54c2a6b # Parent 3da01efb3225bb0b95579b20fe4cee51ff07592c [svn] - better handle the stream condition diff -r 3da01efb3225 -r cf41677e2d7c ChangeLog --- a/ChangeLog Thu Oct 05 08:02:43 2006 -0700 +++ b/ChangeLog Thu Oct 05 08:55:13 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 15:02:43 +0000 William Pitcock + revision [2623] + - support for WA2 skins (no skin.hints) + + trunk/audacious/widgets/skin.c | 10 ++-------- + 1 file changed, 2 insertions(+), 8 deletions(-) + + 2006-10-05 14:57:40 +0000 William Pitcock revision [2621] - fix that goddamn skinlist bug diff -r 3da01efb3225 -r cf41677e2d7c audacious/playlist.c --- a/audacious/playlist.c Thu Oct 05 08:02:43 2006 -0700 +++ b/audacious/playlist.c Thu Oct 05 08:55:13 2006 -0700 @@ -2194,7 +2194,7 @@ Restart. */ node = playlist_get(); } - else if (entry->title || (!entry->tuple && entry->length != -1)) { + else if (entry->tuple == NULL && entry->title != NULL && entry->length == -1) { update_playlistwin = TRUE; if (entry == playlist_position) update_mainwin = TRUE; @@ -2240,7 +2240,7 @@ g_list_nth(playlist_get(), playlistwin_get_toprow()); } - else if (entry->title || (!entry->tuple && entry->length != -1)) { + else if (entry->tuple == NULL && entry->title != NULL && entry->length == -1) { update_playlistwin = TRUE; if (entry == playlist_position) update_mainwin = TRUE;