diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-08-23 14:59:52 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-08-23 14:59:52 +0200 |
commit | 67e41d607413d8e95124b1d28b6ae74924e74ab9 (patch) | |
tree | d4db9446dee616567cb038ee3593648deb170f4e | |
parent | a4794cb4196effcca4b3c7e1253a46f641c46107 (diff) |
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.
-rw-r--r-- | src/imlib.c | 4 |
1 files 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; |