[gimp] plug-ins: fix error from manual patch applying (height instead of width)



commit c4551cf1d2e77d4e2b4b47e4c5221e5da820601b
Author: Michael Natterer <mitch gimp org>
Date:   Wed Apr 20 01:34:09 2016 +0100

    plug-ins: fix error from manual patch applying (height instead of width)

 plug-ins/common/unsharp-mask.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plug-ins/common/unsharp-mask.c b/plug-ins/common/unsharp-mask.c
index 25cae6b..a57fada 100644
--- a/plug-ins/common/unsharp-mask.c
+++ b/plug-ins/common/unsharp-mask.c
@@ -552,7 +552,7 @@ unsharp_mask (GimpDrawable *drawable,
 
   unsharp_region (&srcPR, &destPR, drawable->bpp,
                   radius, amount,
-                  x1, x1 + width, y1, y1 + width,
+                  x1, x1 + width, y1, y1 + height,
                   TRUE);
 
   gimp_drawable_flush (drawable);


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