From 67e41d607413d8e95124b1d28b6ae74924e74ab9 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 23 Aug 2011 14:59:52 +0200 Subject: imlib.c: feh_draw_info: Fix info box offsets The info text used to be located 2px away from the bottom / left edges. Now that --draw-tinted has been implemented, that leaves us with an ugly edge, so move it directly to the edge. --- src/imlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imlib.c b/src/imlib.c index 3259e4d..ee439b2 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -571,8 +571,8 @@ void feh_draw_info(winwidget w) } - gib_imlib_render_image_on_drawable(w->bg_pmap, im, 2, - w->h - (th * no_lines) - 2, 1, 1, 0); + gib_imlib_render_image_on_drawable(w->bg_pmap, im, 0, + w->h - (th * no_lines), 1, 1, 0); gib_imlib_free_image_and_decache(im); return; -- cgit v1.2.3