Mercurial > audlegacy
changeset 1305:c81735c068c6 trunk
[svn] - fix tuple building for FLAC files
author | nenolod |
---|---|
date | Sun, 18 Jun 2006 23:53:16 -0700 |
parents | 46005e4bb063 |
children | d44e5df149dc |
files | ChangeLog Plugins/Input/flac/tag.c |
diffstat | 2 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Jun 18 23:26:41 2006 -0700 +++ b/ChangeLog Sun Jun 18 23:53:16 2006 -0700 @@ -1,3 +1,12 @@ +2006-06-19 06:26:41 +0000 William Pitcock <nenolod@nenolod.net> + revision [1520] + - this p == tuple check really fucks things up if you move back to the previous tuple after the popup has gone away + + + Changes: Modified: + +0 -8 trunk/audacious/ui_fileinfo.c + + 2006-06-19 06:19:46 +0000 William Pitcock <nenolod@nenolod.net> revision [1518] - nemo's patch applied to fileinfo
--- a/Plugins/Input/flac/tag.c Sun Jun 18 23:26:41 2006 -0700 +++ b/Plugins/Input/flac/tag.c Sun Jun 18 23:53:16 2006 -0700 @@ -117,7 +117,7 @@ input->comment = local__getstr(description); input->file_name = g_path_get_basename(filename_proxy); - input->file_path = filename_proxy; + input->file_path = g_path_get_dirname(filename_proxy); input->file_ext = local__extname(filename_proxy); FLAC__metadata_get_streaminfo(filename, &info);