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;
        }



On Fri, Feb 8, 2013 at 9:01 AM, Partha Bagchi <[email protected]> wrote:

> Something seems have to gone haywire with the horizontal flip.
>
> I think the tile placements seems to be issue? In any case, vertical flip
> works fine but horizontal leaves a mess behind.
>
> Thanks,
> Partha
>
>
_______________________________________________
gimp-developer-list mailing list
[email protected]
https://mail.gnome.org/mailman/listinfo/gimp-developer-list

Reply via email to