mirror of https://github.com/GNOME/gimp.git
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:
parent
85783b05aa
commit
202d358991
|
@ -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",
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue