mirror of https://github.com/GNOME/gimp.git
Fri Jul 2 18:05:44 1999 Owen Taylor <otaylor@redhat.com>
* plug-ins/ifscompose/ifscompose_storage.c (parse_genuine_float):
This commit is contained in:
parent
fdca243c98
commit
4c8b3d9a6d
|
@ -1,3 +1,8 @@
|
|||
Fri Jul 2 18:05:44 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* plug-ins/ifscompose/ifscompose_storage.c (parse_genuine_float):
|
||||
Fix bug with negative values.
|
||||
|
||||
Tue Aug 3 18:13:47 CEST 1999 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* app/interface.c: Display multi-line messages left-justified
|
||||
|
|
|
@ -443,7 +443,7 @@ run (char *name,
|
|||
if ((status == STATUS_SUCCESS) &&
|
||||
(gimp_drawable_color (active_drawable->id) || gimp_drawable_gray (active_drawable->id)))
|
||||
{
|
||||
/* set the tile cache size so that the gaussian blur works well */
|
||||
/* set the tile cache size so that the operation works well */
|
||||
gimp_tile_cache_ntiles (2 * (MAX (active_drawable->width, active_drawable->height) /
|
||||
gimp_tile_width () + 1));
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ parse_genuine_float (GScanner *scanner, gdouble *result)
|
|||
|
||||
if (token == G_TOKEN_FLOAT)
|
||||
{
|
||||
*result = scanner->value.v_float;
|
||||
*result = negate ? -scanner->value.v_float : scanner->value.v_float;
|
||||
return G_TOKEN_NONE;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue