From 8245102bbd33a83aa91403165d9474500f8e5970 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Tue, 3 Sep 2019 12:42:17 +0200 Subject: [PATCH] plug-ins: print: fix missing argument to GIMP_PROC_ARG_IMAGE() --- plug-ins/print/print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plug-ins/print/print.c b/plug-ins/print/print.c index 85c0a431a3..7185cf2581 100644 --- a/plug-ins/print/print.c +++ b/plug-ins/print/print.c @@ -539,6 +539,7 @@ print_temp_proc_install (GimpImage *image) GIMP_PROC_ARG_IMAGE (procedure, "image", "Image", "The image to notify about", + FALSE, G_PARAM_READWRITE); gimp_plug_in_add_temp_procedure (plug_in, procedure);