fixed type of threshold parameter (bug #325007).

2005-12-27  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/unsharp.c (query): fixed type of threshold
	parameter (bug #325007).
This commit is contained in:
Sven Neumann 2005-12-27 18:21:11 +00:00 committed by Sven Neumann
parent cdf8dc0f31
commit d23fa327c8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-27 Sven Neumann <sven@gimp.org>
* plug-ins/common/unsharp.c (query): fixed type of threshold
parameter (bug #325007).
2005-12-23 DindinX <dindinx@gimp.org> 2005-12-23 DindinX <dindinx@gimp.org>
* plug-ins/common/apply_lens.c * plug-ins/common/apply_lens.c

View File

@ -124,7 +124,7 @@ query (void)
{ GIMP_PDB_DRAWABLE, "drawable", "Drawable to draw on" }, { GIMP_PDB_DRAWABLE, "drawable", "Drawable to draw on" },
{ GIMP_PDB_FLOAT, "radius", "Radius of gaussian blur (in pixels > 1.0)" }, { GIMP_PDB_FLOAT, "radius", "Radius of gaussian blur (in pixels > 1.0)" },
{ GIMP_PDB_FLOAT, "amount", "Strength of effect" }, { GIMP_PDB_FLOAT, "amount", "Strength of effect" },
{ GIMP_PDB_FLOAT, "threshold", "Threshold" } { GIMP_PDB_INT32, "threshold", "Threshold (0-255)" }
}; };
gimp_install_procedure (PLUG_IN_PROC, gimp_install_procedure (PLUG_IN_PROC,