*** empty log message ***
This commit is contained in:
@ -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>
|
1999-03-08 Jay Cox <jaycox@earthlink.net>
|
||||||
|
|
||||||
* app/plug_in.c: use g_io_channel_close/unref pairs instead of close
|
* app/plug_in.c: use g_io_channel_close/unref pairs instead of close
|
||||||
|
@ -90,7 +90,7 @@ layer_new_invoker (Argument *args)
|
|||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
int_value = args[6].value.pdb_int;
|
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;
|
mode = int_value;
|
||||||
else
|
else
|
||||||
success = FALSE;
|
success = FALSE;
|
||||||
@ -136,7 +136,7 @@ ProcArg layer_new_args[] =
|
|||||||
},
|
},
|
||||||
{ PDB_INT32,
|
{ PDB_INT32,
|
||||||
"mode",
|
"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)
|
if (success)
|
||||||
{
|
{
|
||||||
int_value = args[1].value.pdb_int;
|
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;
|
layer->mode = int_value;
|
||||||
else
|
else
|
||||||
success = FALSE;
|
success = FALSE;
|
||||||
|
Reference in New Issue
Block a user