pdb: raise max blur radius of plug-in-gauss-rle

Perspective shadow could call plug-in-gauss-rle with higher blur
radius than allowed in the wrapper. Raise the max value to
allow for this.

Fixes #11140
This commit is contained in:
Anders Jonsson 2024-03-27 23:53:17 +01:00 committed by Alx Sa
parent 85783b05aa
commit 202d358991
2 changed files with 4 additions and 4 deletions

View File

@ -6695,8 +6695,8 @@ register_plug_in_compat_procs (GimpPDB *pdb)
gimp_procedure_add_argument (procedure,
g_param_spec_double ("radius",
"radius",
"Radius of gaussian blur (in pixels",
0.0, 500.0, 0.0,
"Radius of gaussian blur (in pixels)",
0.0, 1500.0, 0.0,
GIMP_PARAM_READWRITE));
gimp_procedure_add_argument (procedure,
g_param_spec_boolean ("horizontal",

View File

@ -1867,8 +1867,8 @@ HELP
desc => 'Input image (unused)' },
{ name => 'drawable', type => 'drawable',
desc => 'Input drawable' },
{ name => 'radius', type => '0.0 <= float <= 500.0',
desc => 'Radius of gaussian blur (in pixels' },
{ name => 'radius', type => '0.0 <= float <= 1500.0',
desc => 'Radius of gaussian blur (in pixels)' },
{ name => 'horizontal', type => 'boolean',
desc => 'Blur in horizontal direction' },
{ name => 'vertical', type => 'boolean',