Re: [Gimp-developer] Image Horizontal Flip
- From: Partha Bagchi <partha1b gmail com>
- To: gimp-developer <gimp-developer-list gnome org>
- Subject: Re: [Gimp-developer] Image Horizontal Flip
- Date: Fri, 8 Feb 2013 09:20:01 -0500
I think the issue is here:
app/tools/gimpfliptool.c (Notice the orientation is reversed):
switch (options->flip_type)
{
case GIMP_ORIENTATION_HORIZONTAL:
g_object_set (options,
"flip-type", GIMP_ORIENTATION_VERTICAL,
NULL);
break;
case GIMP_ORIENTATION_VERTICAL:
g_object_set (options,
"flip-type", GIMP_ORIENTATION_HORIZONTAL,
NULL);
break;
default:
break;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]