[gimp/gimp-2-10] app: small fix to gimp_gegl_mask_combine_ellipse_rect()
- From: Ell <ell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-10] app: small fix to gimp_gegl_mask_combine_ellipse_rect()
- Date: Sun, 24 Mar 2019 18:46:18 +0000 (UTC)
commit fef2c3423a4a9737ae650a4762137adc8e769510
Author: Ell <ell_se yahoo com>
Date: Sun Mar 24 14:41:28 2019 -0400
app: small fix to gimp_gegl_mask_combine_ellipse_rect()
(cherry picked from commit d4689441fe139b60d54b1a4ca298b5b8bdd1358e)
app/gegl/gimp-gegl-mask-combine.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/app/gegl/gimp-gegl-mask-combine.cc b/app/gegl/gimp-gegl-mask-combine.cc
index 997b2ede66..223c743712 100644
--- a/app/gegl/gimp-gegl-mask-combine.cc
+++ b/app/gegl/gimp-gegl-mask-combine.cc
@@ -421,7 +421,7 @@ gimp_gegl_mask_combine_ellipse_rect (GeglBuffer *mask,
{
ellipse_range (ty1, &x0, &x1);
- if (tx0 > x0 && tx1 <= x1)
+ if (tx0 >= x0 && tx1 <= x1)
{
fill1 (d, iter->length);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]