# HG changeset patch # User nenolod # Date 1162800647 28800 # Node ID 8fae3216373039d0bb7b86f7c9b7c9030b641388 # Parent e00f2d82233bc2e145bd3390a9bed5012010feae [svn] - use values from the skin loader instead of constants (should make doublesize work with Osmosis) diff -r e00f2d82233b -r 8fae32163730 ChangeLog --- a/ChangeLog Sun Nov 05 22:26:49 2006 -0800 +++ b/ChangeLog Mon Nov 06 00:10:47 2006 -0800 @@ -1,3 +1,12 @@ +2006-11-06 06:26:49 +0000 Yoshiki Yazawa + revision [2865] + - build fix + + trunk/audtool/audtool.c | 11 +++++++---- + trunk/libaudacious/Makefile | 1 + + 2 files changed, 8 insertions(+), 4 deletions(-) + + 2006-11-06 02:38:44 +0000 William Pitcock revision [2863] - bump to 1.3.0 diff -r e00f2d82233b -r 8fae32163730 audacious/mainwin.c --- a/audacious/mainwin.c Sun Nov 05 22:26:49 2006 -0800 +++ b/audacious/mainwin.c Mon Nov 06 00:10:47 2006 -0800 @@ -765,9 +765,9 @@ bmp_active_skin->properties.mainwin_height); img2x = create_dblsize_image(img); gdk_draw_image(mainwin_bg_x2, mainwin_gc, img2x, 0, 0, - 0, 0, MAINWIN_WIDTH * 2, + 0, 0, bmp_active_skin->properties.mainwin_width * 2, cfg.player_shaded ? MAINWIN_SHADED_HEIGHT * - 2 : MAINWIN_HEIGHT * 2); + 2 : bmp_active_skin->properties.mainwin_height * 2); gdk_image_destroy(img2x); gdk_image_destroy(img); }