Correction to help text for the gimp-insert-layer-* PDB procedures.

This commit is contained in:
Kevin Cozens 2011-03-01 11:09:56 -05:00
parent 7faaf4df41
commit b890cd39af
1 changed files with 4 additions and 4 deletions

View File

@ -1074,11 +1074,11 @@ sub image_insert_layer {
This procedure adds the specified layer to the image at the given
position. If the specified parent is a valid layer group (See
gimp_item_is_group() and gimp_layer_group_new()) then the layer is
added inside the group. If the parent is NULL, the layer is added
added inside the group. If the parent is 0, the layer is added
inside the main stack, outside of any group. The position argument
specifies the location of the layer inside the stack (or the group, if
a valid parent was supplied), starting from the top (0) and increasing.
If the position is specified as -1 and the parent is specified as NULL,
If the position is specified as -1 and the parent is specified as 0,
then the layer is inserted above the active layer. The layer type must
be compatible with the image base type.
HELP
@ -1236,7 +1236,7 @@ sub image_insert_channel {
$help = <<'HELP';
This procedure adds the specified channel to the image at the given
position. Since channel groups are not currently supported, the parent
argument must always be NULL. The position argument specifies the
argument must always be 0. The position argument specifies the
location of the channel inside the stack, starting from the top (0) and
increasing. If the position is specified as -1, then the channel is
inserted above the active channel.
@ -1338,7 +1338,7 @@ sub image_insert_vectors {
$help = <<'HELP';
This procedure adds the specified vectors to the image at the given
position. Since vectors groups are not currently supported, the parent
argument must always be NULL. The position argument specifies the
argument must always be 0. The position argument specifies the
location of the vectors inside the stack, starting from the top (0) and
increasing. If the position is specified as -1, then the vectors is
inserted above the active vectors.