diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2010-10-03 10:59:28 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2010-10-03 10:59:28 +0200 | 
| commit | 0cb40fc2424952a4448585236b07c554344d579f (patch) | |
| tree | eb48820d6d3bae4b267c7e38d2c51f21d2b18907 /src | |
| parent | f35b6c221134784b2f53f15b72b809d93f03a5ca (diff) | |
imlib.c: Fix draw_actions offset
Diffstat (limited to 'src')
| -rw-r--r-- | src/imlib.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/src/imlib.c b/src/imlib.c index bff0428..6bb6311 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -1127,10 +1127,8 @@ void feh_draw_actions(winwidget w)  	/* This depends on feh_draw_filename internals...  	 * should be fixed some time  	 */ -	if (opt.draw_filename && w->full_screen) +	if (opt.draw_filename)  		th_offset = line_th * 2; -	else if (opt.draw_filename) -		th_offset = line_th;  	im = imlib_create_image(tw, th);  	if (!im) | 
