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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;