mirror of https://github.com/GNOME/gimp.git
Fix non-interactive execution.
This commit is contained in:
parent
4305c39cf0
commit
fec97c4919
|
@ -1,3 +1,9 @@
|
|||
2001-08-11 Seth Burgess <sjburges@gimp.org>
|
||||
|
||||
* plug-ins/common/colortoalpha.c: set nparams != 4 for
|
||||
non-interactive execution. Thanks to alex@foogod.com for
|
||||
this fix.
|
||||
|
||||
2001-08-11 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/core/Makefile.am
|
||||
|
@ -25,7 +31,7 @@
|
|||
* app/widgets/gimpdnd.[ch]: make it DND-able.
|
||||
|
||||
* app/widgets/gimppreview.c: fix preview rendering correctly this
|
||||
itme.
|
||||
time.
|
||||
|
||||
2001-08-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
|
|
|
@ -167,7 +167,7 @@ run (gchar *name,
|
|||
break;
|
||||
|
||||
case GIMP_RUN_NONINTERACTIVE:
|
||||
if (nparams != 3)
|
||||
if (nparams != 4)
|
||||
status = GIMP_PDB_CALLING_ERROR;
|
||||
|
||||
if (status == GIMP_PDB_SUCCESS)
|
||||
|
|
Loading…
Reference in New Issue