summaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorArthur Williams <taaparthur@gmail.com>2021-09-19 10:49:56 +0200
committerNRK <nrk@disroot.org>2021-10-09 22:17:50 +0200
commit675db4bbb646ff51cc3ecc8ba7d587670872580a (patch)
treef0536022677edf2968f770a0dc67a02e074d8b69 /image.c
parent6ce94e3e3b8cccab0a5cc23c7538ad19626c1c1d (diff)
downloadnsxiv-675db4bbb646ff51cc3ecc8ba7d587670872580a.tar.zst
Make statusbar optional (#95)
libXft and libfontconfig are now optional dependencies which can be disabled via `HAVE_LIBFONTS=0`. Disabling them means disabling the statusbar. This also does not search for freetype2 header if disabled. Co-authored-by: NRK <nrk@disroot.org>
Diffstat (limited to 'image.c')
-rw-r--r--image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.c b/image.c
index 4fd1c36..43bd23c 100644
--- a/image.c
+++ b/image.c
@@ -643,7 +643,7 @@ void img_render(img_t *img)
}
imlib_image_put_back_data(data);
} else {
- c = win->win_bg.pixel;
+ c = win->win_bg;
imlib_context_set_color(c >> 16 & 0xFF, c >> 8 & 0xFF, c & 0xFF, 0xFF);
imlib_image_fill_rectangle(0, 0, dw, dh);
}