changeset 2170:d0312301163f trunk

[svn] fixed bug #699 about playlist->queue with patch provided by bug reporter
author giacomo
date Mon, 18 Dec 2006 14:47:48 -0800
parents 0934eeabc0ed
children 7267fc6b2c67
files ChangeLog audacious/playlist.c
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Dec 18 14:01:29 2006 -0800
+++ b/ChangeLog	Mon Dec 18 14:47:48 2006 -0800
@@ -1,3 +1,13 @@
+2006-12-18 22:01:29 +0000  Troels Bang Jensen <marvin@fnuck.dk>
+  revision [3343]
+  Added subsampling and nonlinear transfer function to the voiceprint 
+  visualizer. Also increased the intensity range.
+  
+  trunk/audacious/visualization.c |   10 +++++++---
+  trunk/audacious/widgets/vis.c   |    3 +--
+  2 files changed, 8 insertions(+), 5 deletions(-)
+
+
 2006-12-18 21:11:23 +0000  Giacomo Lozito <james@develia.org>
   revision [3341]
   - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
--- a/audacious/playlist.c	Mon Dec 18 14:01:29 2006 -0800
+++ b/audacious/playlist.c	Mon Dec 18 14:47:48 2006 -0800
@@ -426,6 +426,7 @@
     }
 
     playlist->shuffle = g_list_remove(playlist->shuffle, entry);
+    playlist->queue = g_list_remove(playlist->queue, entry);
     playlist->entries = g_list_remove_link(playlist->entries, node);
     playlist_entry_free(entry);
     g_list_free_1(node);