Skip to content
Snippets Groups Projects
Commit 67e41d60 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

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.
parent a4794cb4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment