From 997e71eb1e6322fb91b0c8be2fe7e29c68b8b4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Fri, 12 Dec 2008 10:33:04 -0500 Subject: [PATCH] Use the screen size for sizing the background. --- egl-compositor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egl-compositor.c b/egl-compositor.c index be25849b..50c0d590 100644 --- a/egl-compositor.c +++ b/egl-compositor.c @@ -1113,7 +1113,7 @@ egl_compositor_create(struct wl_display *display) filename = getenv("WAYLAND_BACKGROUND"); if (filename == NULL) filename = "background.jpg"; - ec->background = background_create(filename, 1280, 800); + ec->background = background_create(filename, ec->width, ec->height); ec->overlay = overlay_create(0, ec->height, ec->width, 200); ec->overlay_y = ec->height; ec->overlay_target = ec->height;