Quote Originally Posted by Karro View Post
Well, yeah, that's what it did for me, too. I gather any other script-fus I DL will go here, as well.
It is actually up to the script author to pick where the script appears in the menus ("gets registered" in geek talk).

The Script-Fu menu is a bit of a throwback, and really, script authors should use the proper contextual location for what the effect does... It shouldn't manner to the use whether it is script-fu, python-fu or a compiled plugin, it should get registered where it makes sense (in this case, it SHOULD be in the Layers menu, IMOO)

Quote Originally Posted by Karro View Post
Somewhat related, I found when trying out the "overlay pattern" effect that the pattern selected within the effect's dialog box is not the pattern that is actually used when you execute the effect. Instead, at least for me, it uses the currently active pattern selected before the effect is launched.
That sounds like a bug...(checking)

...OK on line 1177 of the layerfx.scm file:
Code:
    (gimp-context-set-pattern origpattern)
should be
Code:
    (gimp-context-set-pattern pattern)
-Rob A>