From 919ada11232781e3624363d834a6b9851c3a2bcb Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Wed, 23 Jan 2019 21:18:12 +0100 Subject: Align compile-time color options with X resource colors Two colors are more than enough! --- image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image.c') diff --git a/image.c b/image.c index 1230750..94cfc2d 100644 --- a/image.c +++ b/image.c @@ -497,7 +497,7 @@ void img_render(img_t *img) } imlib_image_put_back_data(data); } else { - c = win->fullscreen ? win->fscol.pixel : win->bgcol.pixel; + c = win->fullscreen ? win->black.pixel : win->bg.pixel; imlib_context_set_color(c >> 16 & 0xFF, c >> 8 & 0xFF, c & 0xFF, 0xFF); imlib_image_fill_rectangle(0, 0, dw, dh); } -- cgit v1.2.3-54-g00ecf