Bug 686103 - Incorrect gimpfu documentation
Add missing "None" default values to PF_IMAGE and PF_DRAWABLE parameters in the procedure registration example.
This commit is contained in:
parent
85445c88c3
commit
e8eaeb606f
1 changed files with 2 additions and 2 deletions
|
|
@ -46,8 +46,8 @@ A typical gimpfu plug-in would look like this:
|
|||
"My plug-in",
|
||||
"*",
|
||||
[
|
||||
(PF_IMAGE, "image", "Input image"),
|
||||
(PF_DRAWABLE, "drawable", "Input drawable"),
|
||||
(PF_IMAGE, "image", "Input image", None),
|
||||
(PF_DRAWABLE, "drawable", "Input drawable", None),
|
||||
(PF_STRING, "arg", "The argument", "default-value")
|
||||
],
|
||||
[],
|
||||
|
|
|
|||
Loading…
Reference in a new issue