mirror of https://github.com/GNOME/gimp.git
app: small fix to gimp_gegl_mask_combine_ellipse_rect()
This commit is contained in:
parent
106df3b794
commit
d4689441fe
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue