diff options
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | src/winwidget.c | 22 | 
2 files changed, 13 insertions, 10 deletions
| @@ -9,6 +9,7 @@ git HEAD      * Add --info option to display custom image information      * Do not change to the next slide when executing an action with ; as first        character (this character is stripped when executing the action) +    * Speed up panning, zooming etc. by hiding image overlay text  Tue, 24 Aug 2010 19:23:36 +0200  Daniel Friesel <derf@chaosdorf.de> diff --git a/src/winwidget.c b/src/winwidget.c index 855e0da..bf7b989 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -531,16 +531,18 @@ void winwidget_render_image(winwidget winwid, int resize, int alias)  								sh, dx, dy,  								dw, dh, 1,  								gib_imlib_image_has_alpha(winwid->im), alias); -	if (opt.caption_path) -		winwidget_update_caption(winwid); -	if (opt.draw_filename) -		feh_draw_filename(winwid); -	if (opt.draw_actions) -		feh_draw_actions(winwid); -	if ((opt.mode == MODE_ZOOM) && !alias) -		feh_draw_zoom(winwid); -	if (opt.info_cmd) -		feh_draw_info(winwid); +	if (opt.mode == MODE_NORMAL) { +		if (opt.caption_path) +			winwidget_update_caption(winwid); +		if (opt.draw_filename) +			feh_draw_filename(winwid); +		if (opt.draw_actions) +			feh_draw_actions(winwid); +		if ((opt.mode == MODE_ZOOM) && !alias) +			feh_draw_zoom(winwid); +		if (opt.info_cmd) +			feh_draw_info(winwid); +	}  	XSetWindowBackgroundPixmap(disp, winwid->win, winwid->bg_pmap);  	XClearWindow(disp, winwid->win);  	return; | 
