Mercurial > audlegacy
changeset 3192:9f9b46506892 trunk
mainwin_update_song_info() should not return FALSE when time < 0 otherwise neither playtime display nor hide seekbar on streaming work.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Sat, 28 Jul 2007 16:53:56 +0900 |
parents | c44eb2f310f0 |
children | e4645b6fb7e3 |
files | src/audacious/ui_main.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)