# HG changeset patch # User nhjm449 # Date 1166862059 28800 # Node ID ad13a4414f454279415b51c7bf8d2cc264f04c83 # Parent 60bd49189fde44a9e43bc38a5adec1d287efa8d9 [svn] - Correctly set the size of playlistwin_list on startup/etc. diff -r 60bd49189fde -r ad13a4414f45 ChangeLog --- a/ChangeLog Fri Dec 22 20:10:22 2006 -0800 +++ b/ChangeLog Sat Dec 23 00:20:59 2006 -0800 @@ -1,3 +1,18 @@ +2006-12-23 04:10:22 +0000 Troels Bang Jensen <marvin@fnuck.dk> + revision [3411] + - two realcolour modes for voiceprint vis: Fire and Ice + - removed duplicate code from vis.c + + trunk/audacious/main.c | 2 + trunk/audacious/main.h | 1 + trunk/audacious/mainwin.c | 27 + + trunk/audacious/visualization.c | 19 - + trunk/audacious/widgets/svis.c | 4 + trunk/audacious/widgets/vis.c | 581 ++++++++++++++++++++-------------------- + trunk/audacious/widgets/vis.h | 5 + 7 files changed, 348 insertions(+), 291 deletions(-) + + 2006-12-23 01:35:11 +0000 Giacomo Lozito <james@develia.org> revision [3409] - playlist manager, work done for data consistency; now it should react and update when it is active and playlists are created/modified/deleted outside the manager (i.e. with keyboard shortcuts) diff -r 60bd49189fde -r ad13a4414f45 audacious/widgets/playlist_list.c --- a/audacious/widgets/playlist_list.c Fri Dec 22 20:10:22 2006 -0800 +++ b/audacious/widgets/playlist_list.c Sat Dec 23 00:20:59 2006 -0800 @@ -555,7 +555,8 @@ obj = pl->pl_widget.parent; - gtk_window_get_size(GTK_WINDOW(playlistwin), &plw_w, &plw_h); + plw_w = playlistwin_get_width(); + plw_h = playlistwin_get_height(); playlist_rect = g_new0(GdkRectangle, 1);