diff audacious/playlist.c @ 1834:cf41677e2d7c trunk

[svn] - better handle the stream condition
author nenolod
date Thu, 05 Oct 2006 08:55:13 -0700
parents d66712838e9f
children 7d0cd3fab6a2
line wrap: on
line diff
--- 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;