mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
increased the arbitrary upper limit on the number of segments in
2007-10-16 Sven Neumann <sven@gimp.org> * tools/pdbgen/pdb/gradient.pdb: increased the arbitrary upper limit on the number of segments in gimp-gradient-segment-range-split-uniform. The old value used to create errors in the "Palette to Gradient" script for most of our palettes. * app/pdb/gradient_cmds.c: regenerated. svn path=/trunk/; revision=23838
This commit is contained in:
committed by
Sven Neumann
parent
206f19004f
commit
100ab0cb77
10
ChangeLog
10
ChangeLog
@@ -1,3 +1,13 @@
|
||||
2007-10-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/gradient.pdb: increased the arbitrary upper
|
||||
limit on the number of segments in
|
||||
gimp-gradient-segment-range-split-uniform. The old value used to
|
||||
create errors in the "Palette to Gradient" script for most of our
|
||||
palettes.
|
||||
|
||||
* app/pdb/gradient_cmds.c: regenerated.
|
||||
|
||||
2007-10-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimp/gimplayer.c (gimp_layer_copy): removed obsolete comment
|
||||
|
@@ -2279,7 +2279,7 @@ register_gradient_procs (GimpPDB *pdb)
|
||||
gimp_param_spec_int32 ("split-parts",
|
||||
"split parts",
|
||||
"The number of uniform divisions to split each segment to",
|
||||
2, 20, 2,
|
||||
2, 1024, 2,
|
||||
GIMP_PARAM_READWRITE));
|
||||
gimp_pdb_register_procedure (pdb, procedure);
|
||||
g_object_unref (procedure);
|
||||
|
@@ -1085,7 +1085,7 @@ HELP
|
||||
{ name => 'end_segment', type => 'int32',
|
||||
desc => 'The index of the last segment to operate on. If negative,
|
||||
the selection will extend to the end of the string.' },
|
||||
{ name => 'split_parts', type => '2 <= int32 <= 20',
|
||||
{ name => 'split_parts', type => '2 <= int32 <= 1024',
|
||||
desc => 'The number of uniform divisions to split each segment to' }
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user