mirror of https://github.com/GNOME/gimp.git
Thu Mar 9 22:29:14 GMT 2000
* app/gimpimage.c An Images tattoos state can equal the highest tattoo in the image.
This commit is contained in:
parent
6e73f200df
commit
a78e51c4fa
|
@ -1,3 +1,9 @@
|
|||
Thu Mar 9 22:29:14 GMT 2000
|
||||
|
||||
* app/gimpimage.c
|
||||
|
||||
A tattoos state can equal the highest tattoo in the image.
|
||||
|
||||
Thu Mar 9 20:45:13 CET 2000 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/commands.[ch]
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
|
@ -1298,7 +1298,7 @@ gimp_image_set_tattoo_state (GimpImage *gimage,
|
|||
}
|
||||
}
|
||||
|
||||
if (val <= maxval)
|
||||
if (val < maxval)
|
||||
retval = FALSE;
|
||||
|
||||
/* Must check the state is valid */
|
||||
|
|
Loading…
Reference in New Issue