mirror of https://github.com/GNOME/gimp.git
Correction to help text for the gimp-insert-layer-* PDB procedures.
This commit is contained in:
parent
7faaf4df41
commit
b890cd39af
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue