mirror of https://github.com/GNOME/gimp.git
app: fix wrong default value on gimp-plug-in-emboss compat proc.
Fixes: > GIMP-CRITICAL: gimp_param_spec_int32: assertion 'default_value >= minimum && default_value <= maximum' failed
This commit is contained in:
parent
8a51993e3f
commit
eca4ca8c8c
|
@ -6059,7 +6059,7 @@ register_plug_in_compat_procs (GimpPDB *pdb)
|
|||
gimp_param_spec_int32 ("depth",
|
||||
"depth",
|
||||
"The Filter Width",
|
||||
1, 99, 0,
|
||||
1, 99, 1,
|
||||
GIMP_PARAM_READWRITE));
|
||||
gimp_procedure_add_argument (procedure,
|
||||
g_param_spec_boolean ("emboss",
|
||||
|
|
Loading…
Reference in New Issue