Mercurial > audlegacy
changeset 4745:34e0d0de2018
branch merge.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 28 Jul 2008 11:36:34 -0500 |
parents | df6cd6f44a4f (current diff) 89891f400f98 (diff) |
children | c1c536313023 |
files | src/audacious/playlist.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/playlist.c Thu Jul 24 15:32:42 2008 +0200 +++ b/src/audacious/playlist.c Mon Jul 28 11:36:34 2008 -0500 @@ -2437,9 +2437,10 @@ /* Entry disappeared while we looked it up. Restart. */ node = playlist->entries; - else if (entry->tuple != NULL && + else if ((entry->tuple != NULL) || + (entry->title != NULL && tuple_get_int(entry->tuple, FIELD_LENGTH, NULL) > -1 && - tuple_get_int(entry->tuple, FIELD_MTIME, NULL) != -1) + tuple_get_int(entry->tuple, FIELD_MTIME, NULL) != -1)) { update_playlistwin = TRUE; break; /* hmmm... --asphyx */ @@ -2488,9 +2489,10 @@ node = g_list_nth(playlist->entries, playlistwin_get_toprow()); } - else if (entry->tuple != NULL && + else if ((entry->tuple != NULL) || + (entry->title != NULL && tuple_get_int(entry->tuple, FIELD_LENGTH, NULL) > -1 && - tuple_get_int(entry->tuple, FIELD_MTIME, NULL) != -1) { + tuple_get_int(entry->tuple, FIELD_MTIME, NULL) != -1)) { update_playlistwin = TRUE; } }