# HG changeset patch # User nemo # Date 1150752834 25200 # Node ID 6963150252204662ca377a76c8313b7369c8e9d4 # Parent f7244db08f403d9746ca172423d9c2c928f568e2 [svn] Better, nenolod? :-p diff -r f7244db08f40 -r 696315025220 ChangeLog --- a/ChangeLog Mon Jun 19 14:06:54 2006 -0700 +++ b/ChangeLog Mon Jun 19 14:33:54 2006 -0700 @@ -1,3 +1,12 @@ +2006-06-19 21:06:54 +0000 William Pitcock + revision [1536] + - solve the blink issue + + + Changes: Modified: + +8 -7 trunk/audacious/ui_fileinfo.c + + 2006-06-19 17:52:13 +0000 Tony Vroon revision [1534] RMI support for timidity by nemo, for which he would like to credit giacomos amidi-plug detection code. diff -r f7244db08f40 -r 696315025220 audacious/ui_fileinfo.c --- a/audacious/ui_fileinfo.c Mon Jun 19 14:06:54 2006 -0700 +++ b/audacious/ui_fileinfo.c Mon Jun 19 14:33:54 2006 -0700 @@ -324,7 +324,7 @@ while(f) { /* ok. why did I not have strcasestr, thought glib had that one */ - if (strstr(f,".jpg") || strstr(f,".jpeg") || strstr(f,".png") || strstr(f,".JPG") || strstr(f,".JPEG") || strstr(f,".PNG")) + if ((strstr(f,".jpg") || strstr(f,".jpeg") || strstr(f,".png") || strstr(f,".JPG") || strstr(f,".JPEG") || strstr(f,".PNG")) && !strstr(f,"back") && !strstr(f,"Back") && !strstr(f,"BACK")==-1) { tmp = g_strdup_printf("%s/%s", tuple->file_path, f); fileinfo_entry_set_image("image_artwork", tmp); @@ -374,7 +374,7 @@ while(f) { /* ok. why did I not have strcasestr, thought glib had that one */ - if (strstr(f,".jpg") || strstr(f,".jpeg") || strstr(f,".png") || strstr(f,".JPG") || strstr(f,".JPEG") || strstr(f,".PNG")) + if ((strstr(f,".jpg") || strstr(f,".jpeg") || strstr(f,".png") || strstr(f,".JPG") || strstr(f,".JPEG") || strstr(f,".PNG")) && !strstr(f,"back") && !strstr(f,"Back") && !strstr(f,"BACK")==-1) { tmp = g_strdup_printf("%s/%s", tuple->file_path, f); filepopup_entry_set_image("image_artwork", tmp);