# HG changeset patch # User Yoshiki Yazawa # Date 1185609236 -32400 # Node ID 9f9b46506892435bebf91ceddf10e216b5521a15 # Parent c44eb2f310f0c81362ab56d82138b967bbabfaa4 mainwin_update_song_info() should not return FALSE when time < 0 otherwise neither playtime display nor hide seekbar on streaming work. diff -r c44eb2f310f0 -r 9f9b46506892 src/audacious/ui_main.c --- a/src/audacious/ui_main.c Sat Jul 28 16:07:14 2007 +0900 +++ b/src/audacious/ui_main.c Sat Jul 28 16:53:56 2007 +0900 @@ -2903,7 +2903,7 @@ gint length, t; gchar stime_prefix; - if (!playback_get_playing() || time < 0) + if (!playback_get_playing()) return FALSE; if (ab_position_a != -1 && ab_position_b != -1 && time > ab_position_b)