changeset 1800:61f531908dd0 trunk

[svn] - Put ()'s around the time in the shaded playlist text.
author nhjm449
date Wed, 04 Oct 2006 20:17:07 -0700
parents 9e37de705efa
children de12374b5c4f
files ChangeLog audacious/ui_playlist.c
diffstat 2 files changed, 9 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 <nenolod@nenolod.net>
+  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 <nenolod@nenolod.net>
   revision [2553]
   - more fix
--- 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