changeset 1954:8fae32163730 trunk

[svn] - use values from the skin loader instead of constants (should make doublesize work with Osmosis)
author nenolod
date Mon, 06 Nov 2006 00:10:47 -0800
parents e00f2d82233b
children f6b058a10242
files ChangeLog audacious/mainwin.c
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <yaz@cc.rim.or.jp>
+  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 <nenolod@nenolod.net>
   revision [2863]
   - bump to 1.3.0
--- 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);
             }