[gimp] app: fix rotated brush boundary position



commit c6cb98573334b31d60d2c522b1cdda9eef95d406
Author: Ell <ell_se yahoo com>
Date:   Sun Dec 24 09:06:51 2017 -0500

    app: fix rotated brush boundary position
    
    ... after commit a0b73420ec0afa8f25b8850963ebb699b2c2bed1.

 app/core/gimpbrush-boundary.c |    2 +-
 app/core/gimpbrush.c          |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/app/core/gimpbrush-boundary.c b/app/core/gimpbrush-boundary.c
index 81b3aca..6e7df4a 100644
--- a/app/core/gimpbrush-boundary.c
+++ b/app/core/gimpbrush-boundary.c
@@ -114,7 +114,7 @@ gimp_brush_real_transform_boundary (GimpBrush *brush,
                                     gint      *width,
                                     gint      *height)
 {
-  gimp_brush_transform_size (brush, scale, aspect_ratio, reflect, angle,
+  gimp_brush_transform_size (brush, scale, aspect_ratio, angle, reflect,
                              width, height);
 
   if (*width < 256 && *height < 256)
diff --git a/app/core/gimpbrush.c b/app/core/gimpbrush.c
index ac998d5..c8de559 100644
--- a/app/core/gimpbrush.c
+++ b/app/core/gimpbrush.c
@@ -615,7 +615,7 @@ gimp_brush_transform_mask (GimpBrush *brush,
   g_return_val_if_fail (scale > 0.0, NULL);
 
   gimp_brush_transform_size (brush,
-                             scale, aspect_ratio, reflect, angle,
+                             scale, aspect_ratio, angle, reflect,
                              &width, &height);
 
   mask = gimp_brush_cache_get (brush->priv->mask_cache,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]