mirror of https://github.com/GNOME/gimp.git
plug-ins: fix #6859 Hurl random pct limits in PDB are incorrect
(cherry picked from commit a038051bb8
)
This commit is contained in:
parent
003f137dc0
commit
825067eab7
|
@ -8253,7 +8253,7 @@ register_plug_in_compat_procs (GimpPDB *pdb)
|
|||
g_param_spec_double ("rndm-pct",
|
||||
"rndm pct",
|
||||
"Randomization percentage",
|
||||
1.0, 100.0, 1.0,
|
||||
0.0, 100.0, 0.0,
|
||||
GIMP_PARAM_READWRITE));
|
||||
gimp_procedure_add_argument (procedure,
|
||||
g_param_spec_double ("rndm-rcount",
|
||||
|
|
|
@ -3479,7 +3479,7 @@ HELP
|
|||
desc => 'Input image (unused)' },
|
||||
{ name => 'drawable', type => 'drawable',
|
||||
desc => 'Input drawable' },
|
||||
{ name => 'rndm_pct', type => '1.0 <= float <= 100.0',
|
||||
{ name => 'rndm_pct', type => '0.0 <= float <= 100.0',
|
||||
desc => 'Randomization percentage' },
|
||||
{ name => 'rndm_rcount', type => '1.0 <= float <= 100.0',
|
||||
desc => 'Repeat count' },
|
||||
|
|
Loading…
Reference in New Issue