# HG changeset patch # User nhjm449 # Date 1160018227 25200 # Node ID 61f531908dd03ab9a2c10a0720a066f35a95a7a7 # Parent 9e37de705efaf0efe4da4a5867859b957b291e8a [svn] - Put ()'s around the time in the shaded playlist text. diff -r 9e37de705efa -r 61f531908dd0 ChangeLog --- a/ChangeLog Wed Oct 04 20:10:32 2006 -0700 +++ b/ChangeLog Wed Oct 04 20:17:07 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 03:10:32 +0000 William Pitcock + revision [2555] + - othertext visibility enforcement + + trunk/audacious/mainwin.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + + 2006-10-05 03:07:35 +0000 William Pitcock revision [2553] - more fix diff -r 9e37de705efa -r 61f531908dd0 audacious/ui_playlist.c --- a/audacious/ui_playlist.c Wed Oct 04 20:10:32 2006 -0700 +++ b/audacious/ui_playlist.c Wed Oct 04 20:17:07 2006 -0700 @@ -405,7 +405,7 @@ posstr = g_strdup(""); if (time != -1) { - timestr = g_strdup_printf(" %d:%-2.2d", time / 60000, + timestr = g_strdup_printf(" (%d:%-2.2d)", time / 60000, (time / 1000) % 60); } else