*** empty log message ***

This commit is contained in:
Marc Lehmann 1999-03-08 20:28:35 +00:00
parent 872e522891
commit 93509593e3
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Mon Mar 8 21:23:10 CET 1999 Marc Lehmann <pcg@goof.com>
* app/layer_cmds.c: updated gimp_layer_new and gimp_layer_set_mode to
accept a DIVIDE_MODE argument.
1999-03-08 Jay Cox <jaycox@earthlink.net>
* app/plug_in.c: use g_io_channel_close/unref pairs instead of close

View File

@ -90,7 +90,7 @@ layer_new_invoker (Argument *args)
if (success)
{
int_value = args[6].value.pdb_int;
if (int_value >= NORMAL_MODE && int_value <= VALUE_MODE)
if (int_value >= NORMAL_MODE && int_value <= DIVIDE_MODE)
mode = int_value;
else
success = FALSE;
@ -136,7 +136,7 @@ ProcArg layer_new_args[] =
},
{ PDB_INT32,
"mode",
"the layer combination mode: { NORMAL (0), DISSOLVE (1), MULTIPLY (3), SCREEN (4), OVERLAY (5) DIFFERENCE (6), ADDITION (7), SUBTRACT (8), DARKEN-ONLY (9), LIGHTEN-ONLY (10), HUE (11), SATURATION (12), COLOR (13), VALUE (14) }"
"the layer combination mode: { NORMAL (0), DISSOLVE (1), MULTIPLY (3), SCREEN (4), OVERLAY (5) DIFFERENCE (6), ADDITION (7), SUBTRACT (8), DARKEN-ONLY (9), LIGHTEN-ONLY (10), HUE (11), SATURATION (12), COLOR (13), VALUE (14), DIVIDE/DODGE (15) }"
}
};
@ -1753,7 +1753,7 @@ layer_set_mode_invoker (Argument *args)
if (success)
{
int_value = args[1].value.pdb_int;
if (int_value >= NORMAL_MODE && int_value <= VALUE_MODE)
if (int_value >= NORMAL_MODE && int_value <= DIVIDE_MODE)
layer->mode = int_value;
else
success = FALSE;