# HG changeset patch # User nenolod # Date 1164858570 28800 # Node ID 73471758fc71a35be8ed870f6a543731b0381cf0 # Parent 2f8a85fc94505bbbb9c1bb8d0bc085d006a4ab85 [svn] - make sure the mainwin is redrawn correctly when doublesized. reported by Tom St. Denis, closes #674. diff -r 2f8a85fc9450 -r 73471758fc71 ChangeLog --- a/ChangeLog Wed Nov 29 13:46:59 2006 -0800 +++ b/ChangeLog Wed Nov 29 19:49:30 2006 -0800 @@ -1,3 +1,11 @@ +2006-11-29 21:46:59 +0000 William Pitcock <nenolod@nenolod.net> + revision [3043] + - fix conditionals for building build_stamp.c + + trunk/audacious/Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-11-29 21:09:07 +0000 William Pitcock <nenolod@nenolod.net> revision [3041] - seeking by keypad should seek 5s, not 1s. closes #673. diff -r 2f8a85fc9450 -r 73471758fc71 audacious/mainwin.c --- a/audacious/mainwin.c Wed Nov 29 13:46:59 2006 -0800 +++ b/audacious/mainwin.c Wed Nov 29 19:49:30 2006 -0800 @@ -1051,8 +1051,8 @@ height == bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1)) return; - dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH : bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), - cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1), + dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), + cfg.player_shaded ? MAINWIN_SHADED_HEIGHT * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1), bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1));