From 38e34c87a255e4a267e0b175828b3e91bec81f04 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 16 Sep 2010 20:31:42 +0200 Subject: Display image info in bottom left corner --- src/imlib.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/imlib.c b/src/imlib.c index 2ff71d4..afa9693 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -626,7 +626,6 @@ void feh_draw_info(winwidget w) { static Imlib_Font fn = NULL; int tw = 0, th = 0; - int tmp_tw = 0, tmp_th = 0; Imlib_Image im = NULL; static DATA8 atab[256]; int no_lines = 0; @@ -685,16 +684,13 @@ void feh_draw_info(winwidget w) gib_imlib_text_draw(im, fn, NULL, 1, (no_lines*th)+1, info_buf, IMLIB_TEXT_TO_RIGHT, 255, 255, 255, 255); no_lines++; - gib_imlib_get_text_size(fn, info_buf, NULL, &tmp_tw, &tmp_th, IMLIB_TEXT_TO_RIGHT); - if (tmp_tw > tw) - tw = tmp_tw; } pclose(info_pipe); } - gib_imlib_render_image_on_drawable(w->bg_pmap, im, w->w - tw - 5, w->h - - (th * no_lines) - 5, 1, 1, 0); + gib_imlib_render_image_on_drawable(w->bg_pmap, im, 2, + w->h - (th * no_lines) - 2, 1, 1, 0); gib_imlib_free_image_and_decache(im); return; -- cgit v1.2.3