Mercurial > audlegacy
changeset 1834:cf41677e2d7c trunk
[svn] - better handle the stream condition
author | nenolod |
---|---|
date | Thu, 05 Oct 2006 08:55:13 -0700 |
parents | 3da01efb3225 |
children | fab086733722 |
files | ChangeLog audacious/playlist.c |
diffstat | 2 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@nenolod.net> + 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 <nenolod@nenolod.net> revision [2621] - fix that goddamn skinlist bug
--- 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;