app: small fix to gimp_gegl_mask_combine_ellipse_rect()

This commit is contained in:
Ell 2019-03-24 14:41:28 -04:00
parent 106df3b794
commit d4689441fe
1 changed files with 1 additions and 1 deletions

View File

@ -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);