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:
Jehan 2019-07-19 11:11:34 +02:00
parent 8a51993e3f
commit eca4ca8c8c
1 changed files with 1 additions and 1 deletions

View File

@ -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",