diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 1 | ||||
| -rw-r--r-- | src/collage.c | 208 | ||||
| -rw-r--r-- | src/feh.h | 1 | ||||
| -rw-r--r-- | src/filelist.c | 7 | ||||
| -rw-r--r-- | src/gib_imlib.c | 12 | ||||
| -rw-r--r-- | src/gib_imlib.h | 2 | ||||
| -rw-r--r-- | src/gib_list.c | 2 | ||||
| -rw-r--r-- | src/help.raw | 7 | ||||
| -rw-r--r-- | src/imlib.c | 14 | ||||
| -rw-r--r-- | src/keyevents.c | 2 | ||||
| -rw-r--r-- | src/main.c | 4 | ||||
| -rw-r--r-- | src/options.c | 32 | ||||
| -rw-r--r-- | src/options.h | 9 | ||||
| -rw-r--r-- | src/slideshow.c | 19 | ||||
| -rw-r--r-- | src/wallpaper.c | 2 | ||||
| -rw-r--r-- | src/winwidget.c | 2 | 
16 files changed, 83 insertions, 241 deletions
| diff --git a/src/Makefile b/src/Makefile index 8a9f97e..ac4d2fe 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,6 @@  include ../config.mk  TARGETS = \ -	collage.c \  	events.c \  	feh_png.c \  	filelist.c \ diff --git a/src/collage.c b/src/collage.c deleted file mode 100644 index 2a4d9f9..0000000 --- a/src/collage.c +++ /dev/null @@ -1,208 +0,0 @@ -/* collage.c - -Copyright (C) 1999-2003 Tom Gilbert. -Copyright (C) 2010-2018 Daniel Friesel. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies of the Software and its documentation and acknowledgment shall be -given in the documentation and software packages that this Software was -used. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -*/ - -#include "feh.h" -#include "winwidget.h" -#include "filelist.h" -#include "options.h" - -void init_collage_mode(void) -{ -	Imlib_Image im_main; -	Imlib_Image im_temp; -	int ww, hh, www, hhh, xxx, yyy; -	int w = 800, h = 600; -	int bg_w = 0, bg_h = 0; -	winwidget winwid = NULL; -	Imlib_Image bg_im = NULL, im_thumb = NULL; -	feh_file *file = NULL; -	unsigned char trans_bg = 0; -	gib_list *l, *last = NULL; - -	mode = "collage"; - -	weprintf("the --collage option (aka collage mode) is deprecated\n" -			"and will be removed soon\n"); - -	/* Use bg image dimensions for default size */ -	if (opt.bg && opt.bg_file) { -		if (!strcmp(opt.bg_file, "trans")) -			trans_bg = 1; -		else { - -			D(("Time to apply a background to blend onto\n")); -			if (feh_load_image_char(&bg_im, opt.bg_file) != 0) { -				bg_w = gib_imlib_image_get_width(bg_im); -				bg_h = gib_imlib_image_get_height(bg_im); -			} -		} -	} - -	if (!opt.limit_w || !opt.limit_h) { -		if (bg_im) { -			if (opt.verbose) -				fputs(PACKAGE -					": No size restriction specified for collage.\n" -					" You did specify a background however, so the\n" -					" collage size has defaulted to the size of the image\n", -					stderr); -			opt.limit_w = bg_w; -			opt.limit_h = bg_h; -		} else { -			if (opt.verbose) -				fputs(PACKAGE -					": No size restriction specified for collage.\n" -					" - For collage mode, you need to specify width and height.\n" -					" Using defaults (width 800, height 600)\n", -					stderr); -			opt.limit_w = 800; -			opt.limit_h = 600; -		} -	} - -	w = opt.limit_w; -	h = opt.limit_h; -	D(("Limiting width to %d and height to %d\n", w, h)); - -	im_main = imlib_create_image(w, h); - -	if (!im_main) -		eprintf("Imlib error creating image"); - -	if (bg_im) -		gib_imlib_blend_image_onto_image(im_main, bg_im, -				gib_imlib_image_has_alpha(bg_im), 0, 0, -				bg_w, bg_h, 0, 0, w, h, 1, 0, 0); -	else if (trans_bg) { -		gib_imlib_image_fill_rectangle(im_main, 0, 0, w, h, 0, 0, 0, 0); -		gib_imlib_image_set_has_alpha(im_main, 1); -	} else { -		/* Colour the background */ -		gib_imlib_image_fill_rectangle(im_main, 0, 0, w, h, 0, 0, 0, 255); -	} - -	if (opt.display) { -		winwid = winwidget_create_from_image(im_main, WIN_TYPE_SINGLE); -		winwidget_rename(winwid, PACKAGE " [collage mode]"); -		winwidget_show(winwid); -	} - -	for (l = filelist; l; l = l->next) { -		file = FEH_FILE(l->data); -		if (last) { -			filelist = feh_file_remove_from_list(filelist, last); -			last = NULL; -		} -		D(("About to load image %s\n", file->filename)); -		if (feh_load_image(&im_temp, file) != 0) { -			D(("Successfully loaded %s\n", file->filename)); -			if (opt.verbose) -				feh_display_status('.'); -			www = opt.thumb_w; -			hhh = opt.thumb_h; -			ww = gib_imlib_image_get_width(im_temp); -			hh = gib_imlib_image_get_height(im_temp); - -			if (opt.aspect) { -				double ratio = 0.0; - -				/* Keep the aspect ratio for the thumbnail */ -				ratio = ((double) ww / hh) / ((double) www / hhh); - -				if (ratio > 1.0) -					hhh = opt.thumb_h / ratio; -				else if (ratio != 1.0) -					www = opt.thumb_w * ratio; -			} - -			if ((!opt.stretch) && ((www > ww) || (hhh > hh))) { -				/* Don't make the image larger unless stretch is specified */ -				www = ww; -				hhh = hh; -			} - -			/* pick random coords for thumbnail */ -			xxx = ((w - www) * ((double) rand() / RAND_MAX)); -			yyy = ((h - hhh) * ((double) rand() / RAND_MAX)); -			D(("image going on at x=%d, y=%d\n", xxx, yyy)); - -			im_thumb = gib_imlib_create_cropped_scaled_image(im_temp, -					0, 0, ww, hh, www, hhh, 1); -			gib_imlib_free_image_and_decache(im_temp); - -			if (opt.alpha) { -				DATA8 atab[256]; - -				D(("Applying alpha options\n")); -				gib_imlib_image_set_has_alpha(im_thumb, 1); -				memset(atab, opt.alpha_level, sizeof(atab)); -				gib_imlib_apply_color_modifier_to_rectangle(im_thumb, -						0, 0, www, hhh, NULL, NULL, NULL, atab); -			} -			gib_imlib_blend_image_onto_image(im_main, im_thumb, -					gib_imlib_image_has_alpha(im_thumb), 0, 0, www, hhh, xxx, -					yyy,www, hhh, 1, gib_imlib_image_has_alpha(im_thumb), 0); -			gib_imlib_free_image_and_decache(im_thumb); -		} else { -			last = l; -			if (opt.verbose) -				feh_display_status('x'); -		} -		if (opt.display) { -			winwidget_render_image(winwid, 0, 0); -			if (!feh_main_iteration(0)) -				exit(0); -		} -	} -	if (opt.verbose) -		fputs("\n", stderr); - -	if (opt.output && opt.output_file) { -		char output_buf[1024]; -		if (opt.output_dir) -			snprintf(output_buf, 1024, "%s/%s", opt.output_dir, opt.output_file); -		else { -			strncpy(output_buf, opt.output_file, 1023); -			output_buf[1023] = '\0'; -		} -		gib_imlib_save_image(im_main, output_buf); -		if (opt.verbose) { -			int tw, th; - -			tw = gib_imlib_image_get_width(im_main); -			th = gib_imlib_image_get_height(im_main); -			fprintf(stderr, PACKAGE ": File saved as %s\n", output_buf); -			fprintf(stderr, -				"    - Image is %dx%d pixels and contains %d thumbnails\n", -				tw, th, (tw / opt.thumb_w) * (th / opt.thumb_h)); -		} -	} - -	if (!opt.display) -		gib_imlib_free_image_and_decache(im_main); - -	return; -} @@ -132,7 +132,6 @@ void init_xinerama(void);  #endif				/* HAVE_LIBXINERAMA */  void init_multiwindow_mode(void);  void init_thumbnail_mode(void); -void init_collage_mode(void);  void init_index_mode(void);  void init_slideshow_mode(void);  void init_list_mode(void); diff --git a/src/filelist.c b/src/filelist.c index b492965..3f3c96d 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -37,6 +37,7 @@ gib_list *original_file_items = NULL; /* original file items from argv */  int filelist_len = 0;  gib_list *current_file = NULL;  extern int errno; +extern int sig_exit; /* exit flag from signal handler */  static gib_list *rm_filelist = NULL; @@ -327,6 +328,10 @@ gib_list *feh_file_info_preload(gib_list * list)  				feh_display_status('s');  		} else if (opt.verbose)  			feh_display_status('.'); +		if (sig_exit) { +			feh_display_status(0); +			exit(sig_exit); +		}  	}  	if (opt.verbose)  		feh_display_status(0); @@ -486,7 +491,7 @@ void feh_prepare_filelist(void)  	 * we can create a properly sized thumbnail list.  	 */  	if (opt.list || opt.preload || opt.customlist || (opt.sort > SORT_MTIME) -			|| (opt.filter_by_dimensions && (opt.index || opt.collage || opt.thumbs || opt.bgmode))) { +			|| (opt.filter_by_dimensions && (opt.index || opt.thumbs || opt.bgmode))) {  		/* For these sort options, we have to preload images */  		filelist = feh_file_info_preload(filelist);  		if (!gib_list_length(filelist)) diff --git a/src/gib_imlib.c b/src/gib_imlib.c index 8f401aa..7858cb7 100644 --- a/src/gib_imlib.c +++ b/src/gib_imlib.c @@ -717,3 +717,15 @@ void gib_imlib_image_orientate(Imlib_Image im, int orientation)    imlib_context_set_image(im);    imlib_image_orientate(orientation);  } + +void gib_imlib_image_flip_horizontal(Imlib_Image im) +{ +  imlib_context_set_image(im); +  imlib_image_flip_horizontal(); +} + +void gib_imlib_image_flip_vertical(Imlib_Image im) +{ +  imlib_context_set_image(im); +  imlib_image_flip_vertical(); +} diff --git a/src/gib_imlib.h b/src/gib_imlib.h index 6a16a0c..07daabe 100644 --- a/src/gib_imlib.h +++ b/src/gib_imlib.h @@ -181,6 +181,8 @@ void gib_imlib_parse_color(char *col, int *r, int *g, int *b, int *a);  void gib_imlib_parse_fontpath(char *path);  Imlib_Font gib_imlib_load_font(char *name);  void gib_imlib_image_orientate(Imlib_Image im, int orientation); +void gib_imlib_image_flip_horizontal(Imlib_Image im); +void gib_imlib_image_flip_vertical(Imlib_Image im);  #ifdef __cplusplus  } diff --git a/src/gib_list.c b/src/gib_list.c index 5384d98..a8ba1dd 100644 --- a/src/gib_list.c +++ b/src/gib_list.c @@ -362,7 +362,7 @@ gib_list_randomize(gib_list * list)     }     for (i = 0; i < len - 1; i++)     { -      r = i + rand() / (RAND_MAX / (len - i) + 1 ); +      r = i + random() / (RAND_MAX / (len - i) + 1 );        t = farray[r];        farray[r] = farray[i];        farray[i] = t; diff --git a/src/help.raw b/src/help.raw index 86bb617..c8de3d7 100644 --- a/src/help.raw +++ b/src/help.raw @@ -38,7 +38,8 @@ OPTIONS       --auto-rotate         Rotate images according to Exif info (if compiled with exif=1)   -^, --title TITLE         Set window title (see FORMAT SPECIFIERS)   -D, --slideshow-delay NUM Set delay between automatically changing slides -     --cycle-once          Exit after one loop through the slideshow +     --on-last-slide quit  Exit after one loop through the slide show +     --on-last-slide hold  Stop at both ends of the filelist   -R, --reload NUM          Reload images after NUM seconds   -k, --keep-http           Keep local copies when viewing HTTP/FTP files       --insecure            Disable peer/host verification when using HTTPS. @@ -90,8 +91,8 @@ OPTIONS       --no-xinerama         Disable Xinerama support       --no-screen-clip      Do not limit window size to screen size   -Y, --hide-pointer        Hide the pointer -     --magick-timeout INT  Load unknown files with ImageMagick, timeout after -                           INT seconds (0: no timeout) +     --conversion-timeout  INT  Load unknown files with dcraw or ImageMagick, +                           timeout after INT seconds (0: no timeout)       --min-dimension WxH   Only show images with width >= W and height >= H       --max-dimension WxH   Only show images with width <= W and height <= H       --scroll-step COUNT   scroll COUNT pixels when movement key is pressed diff --git a/src/imlib.c b/src/imlib.c index 91b635e..2c04128 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -294,10 +294,22 @@ int feh_load_image(Imlib_Image * im, feh_file * file)  	}  	file->ed = exifData; -	if (orientation == 3) +	if (orientation == 2) +		gib_imlib_image_flip_horizontal(*im); +	else if (orientation == 3)  		gib_imlib_image_orientate(*im, 2); +	else if (orientation == 4) +		gib_imlib_image_flip_vertical(*im); +	else if (orientation == 5) { +		gib_imlib_image_orientate(*im, 3); +		gib_imlib_image_flip_vertical(*im); +	}  	else if (orientation == 6)  		gib_imlib_image_orientate(*im, 1); +	else if (orientation == 7) { +		gib_imlib_image_orientate(*im, 3); +		gib_imlib_image_flip_horizontal(*im); +	}  	else if (orientation == 8)  		gib_imlib_image_orientate(*im, 3);  #endif diff --git a/src/keyevents.c b/src/keyevents.c index 689aebd..43bc82a 100644 --- a/src/keyevents.c +++ b/src/keyevents.c @@ -686,7 +686,7 @@ void feh_event_handle_generic(winwidget winwid, unsigned int state, KeySym keysy  	}  	else if (feh_is_kp(EVENT_jump_random, state, keysym, button)) {  		if (winwid->type == WIN_TYPE_THUMBNAIL) -			feh_thumbnail_select_next(winwid, rand() % (filelist_len - 1)); +			feh_thumbnail_select_next(winwid, random() % (filelist_len - 1));  		else  			slideshow_change_image(winwid, SLIDE_RAND, 1);  	} @@ -42,7 +42,7 @@ int main(int argc, char **argv)  {  	atexit(feh_clean_exit); -	srand(getpid() * time(NULL) % ((unsigned int) -1)); +	srandom(getpid() * time(NULL) % ((unsigned int) -1));  	setup_signal_handlers();  	init_parse_options(argc, argv); @@ -59,8 +59,6 @@ int main(int argc, char **argv)  	if (opt.index)  		init_index_mode(); -	else if (opt.collage) -		init_collage_mode();  	else if (opt.multiwindow)  		init_multiwindow_mode();  	else if (opt.list || opt.customlist) diff --git a/src/options.c b/src/options.c index d3066ef..dc6a9ff 100644 --- a/src/options.c +++ b/src/options.c @@ -354,7 +354,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  		{"title"         , 1, 0, '^'},  		{"alpha"         , 1, 0, 'a'},  		{"bg"            , 1, 0, 'b'}, -		{"collage"       , 0, 0, 'c'},  		{"draw-filename" , 0, 0, 'd'},  		{"font"          , 1, 0, 'e'},  		{"filelist"      , 1, 0, 'f'}, @@ -415,6 +414,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  		{"insecure"      , 0, 0, 240},  		{"no-recursive"  , 0, 0, 241},  		{"cache-size"    , 1, 0, 243}, +		{"on-last-slide" , 1, 0, 244},  		{"conversion-timeout" , 1, 0, 245},  		{"version-sort"  , 0, 0, 246},  		{"offset"        , 1, 0, 247}, @@ -578,9 +578,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  			opt.bg = 1;  			opt.bg_file = estrdup(optarg);  			break; -		case 'c': -			opt.collage = 1; -			break;  		case 'd':  			opt.draw_filename = 1;  			break; @@ -743,7 +740,8 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  			break;  #endif  		case 224: -			opt.cycle_once = 1; +			weprintf("--cycle-once is deprecated, please use --on-last-slide=quit instead"); +			opt.on_last_slide = ON_LAST_SLIDE_QUIT;  			break;  		case 225:  			opt.xinerama = 0; @@ -786,6 +784,18 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  			if (opt.cache_size > 2048)  				opt.cache_size = 2048;  			break; +		case 244: +			if (!strcmp(optarg, "quit")) { +				opt.on_last_slide = ON_LAST_SLIDE_QUIT; +			} else if (!strcmp(optarg, "hold")) { +				opt.on_last_slide = ON_LAST_SLIDE_HOLD; +			} else if (!strcmp(optarg, "resume")) { +				opt.on_last_slide = ON_LAST_SLIDE_RESUME; +			} else { +				weprintf("Unrecognized on-last-slide action \"%s\"." +						"Supported actions: hold, resume, quit\n", optarg); +			} +			break;  		case 245:  			opt.conversion_timeout = atoi(optarg);  			break; @@ -843,17 +853,11 @@ static void check_options(void)  		}  	} -	if ((opt.index + opt.collage) > 1) { -		weprintf("you can't use collage mode and index mode together.\n" -				"   I'm going with index"); -		opt.collage = 0; -	} -  	if (opt.full_screen && opt.multiwindow) {  		eprintf("You cannot combine --fullscreen with --multiwindow");  	} -	if (opt.list && (opt.multiwindow || opt.index || opt.collage)) { +	if (opt.list && (opt.multiwindow || opt.index)) {  		eprintf("You cannot combine --list with other modes");  	} @@ -889,6 +893,10 @@ static void show_version(void)  		"stat64 "  #endif +#ifdef HAVE_VERSCMP +		"verscmp " +#endif +  #ifdef HAVE_LIBXINERAMA  		"xinerama "  #endif diff --git a/src/options.h b/src/options.h index bd2dfad..5734b54 100644 --- a/src/options.h +++ b/src/options.h @@ -27,10 +27,15 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  #ifndef OPTIONS_H  #define OPTIONS_H +enum on_last_slide_action { +	ON_LAST_SLIDE_RESUME = 0, +	ON_LAST_SLIDE_QUIT, +	ON_LAST_SLIDE_HOLD +}; +  struct __fehoptions {  	unsigned char multiwindow;  	unsigned char montage; -	unsigned char collage;  	unsigned char index;  	unsigned char thumbs;  	unsigned char slideshow; @@ -68,7 +73,7 @@ struct __fehoptions {  	unsigned char draw_actions;  	unsigned char draw_info;  	unsigned char cache_thumbnails; -	unsigned char cycle_once; +	unsigned char on_last_slide;  	unsigned char hold_actions[10];  	unsigned char text_bg;  	unsigned char no_fehbg; diff --git a/src/slideshow.c b/src/slideshow.c index e87d1b9..b404318 100644 --- a/src/slideshow.c +++ b/src/slideshow.c @@ -215,6 +215,7 @@ void feh_reload_image(winwidget w, int resize, int force_new)  void slideshow_change_image(winwidget winwid, int change, int render)  {  	gib_list *last = NULL; +	gib_list *previous_file = current_file;  	int i = 0;  	int jmp = 1;  	/* We can't use filelist_len in the for loop, since that changes when we @@ -227,7 +228,7 @@ void slideshow_change_image(winwidget winwid, int change, int render)  	/* Without this, clicking a one-image slideshow reloads it. Not very *  	   intelligent behaviour :-) */ -	if (filelist_len < 2 && opt.cycle_once == 0) +	if (filelist_len < 2 && opt.on_last_slide != ON_LAST_SLIDE_QUIT)  		return;  	/* Ok. I do this in such an odd way to ensure that if the last or first * @@ -237,9 +238,11 @@ void slideshow_change_image(winwidget winwid, int change, int render)  	if (change == SLIDE_FIRST) {  		current_file = gib_list_last(filelist);  		change = SLIDE_NEXT; +		previous_file = NULL;  	} else if (change == SLIDE_LAST) {  		current_file = filelist;  		change = SLIDE_PREV; +		previous_file = NULL;  	}  	/* The for loop prevents us looping infinitely */ @@ -255,7 +258,7 @@ void slideshow_change_image(winwidget winwid, int change, int render)  		case SLIDE_RAND:  			if (filelist_len > 1) {  				current_file = feh_list_jump(filelist, current_file, FORWARD, -					(rand() % (filelist_len - 1)) + 1); +					(random() % (filelist_len - 1)) + 1);  				change = SLIDE_NEXT;  			}  			break; @@ -335,6 +338,12 @@ void slideshow_change_image(winwidget winwid, int change, int render)  			last = NULL;  		} +		if (opt.on_last_slide == ON_LAST_SLIDE_HOLD && previous_file && +			((current_file == filelist && change == SLIDE_NEXT) || +			(previous_file == filelist && change == SLIDE_PREV))) { +				current_file = previous_file; +		} +  		if (winwidget_loadimage(winwid, FEH_FILE(current_file->data))) {  			int w = gib_imlib_image_get_width(winwid->im);  			int h = gib_imlib_image_get_height(winwid->im); @@ -568,10 +577,10 @@ void feh_filelist_image_remove(winwidget winwid, char do_delete)  		doomed = current_file;  		/* -		 * work around feh_list_jump exiting if cycle_once is enabled +		 * work around feh_list_jump exiting if ON_LAST_SLIDE_QUIT is set  		 * and no further files are left (we need to delete first)  		 */ -		if (opt.cycle_once && ! doomed->next && do_delete) { +		if (opt.on_last_slide == ON_LAST_SLIDE_QUIT && ! doomed->next && do_delete) {  			feh_file_rm_and_free(filelist, doomed);  			exit(0);  		} @@ -647,7 +656,7 @@ gib_list *feh_list_jump(gib_list * root, gib_list * l, int direction, int num)  			if (ret->next) {  				ret = ret->next;  			} else { -				if (opt.cycle_once) { +				if (opt.on_last_slide == ON_LAST_SLIDE_QUIT) {  					exit(0);  				}  				if (opt.randomize) { diff --git a/src/wallpaper.c b/src/wallpaper.c index db14a8c..ef7ecca 100644 --- a/src/wallpaper.c +++ b/src/wallpaper.c @@ -252,7 +252,7 @@ void feh_wm_set_bg(char *fil, Imlib_Image im, int centered, int scaled,  	XGCValues gcval;  	GC gc;  	char bgname[20]; -	int num = (int) rand(); +	int num = (int) random();  	char bgfil[4096];  	char sendbuf[4096]; diff --git a/src/winwidget.c b/src/winwidget.c index fe0b505..b68d56f 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -520,7 +520,7 @@ void winwidget_render_image(winwidget winwid, int resize, int force_alias)  	D(("sx: %d sy: %d sw: %d sh: %d dx: %d dy: %d dw: %d dh: %d zoom: %f\n",  	   sx, sy, sw, sh, dx, dy, dw, dh, winwid->zoom)); -	if ((winwid->zoom != 1.0) && !force_alias && !winwid->force_aliasing) +	if ((winwid->zoom != 1.0 || winwid->has_rotated) && !force_alias && !winwid->force_aliasing)  		antialias = 1;  	D(("winwidget_render(): winwid->im_angle = %f\n", winwid->im_angle)); | 
