Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-22 Thread Carol Spears
On Sat, Aug 12, 2006 at 03:33:57AM +, David Gowers wrote: Yes, that was exactly what's needed. Looks like '' means 'image is irrelevant' while '*' means 'all'. it has been my experience that '*' always creates a script that will only run once and sit there grayed out in the menu as you

[Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-11 Thread David Gowers
I've written several PyGimp plugins, but when I go to the 'recent filters' menu or try to rerun one, it is disabled. I can run it okay and it produces the expected results, but I can't rerun it. to clarify, I'm using the simple gimpplugin.plugin class (GimpFu is far too heavyweight and slow for

Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-11 Thread Kevin Cozens
David Gowers wrote: I've written several PyGimp plugins, but when I go to the 'recent filters' menu or try to rerun one, it is disabled. I can run it okay and it produces the expected results, but I can't rerun it. You don't need to do anything in your plug-in. It was a limitation within GIMP

Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-11 Thread David Gowers
On 8/11/06, Seth Burgess [EMAIL PROTECTED] wrote: I think the better question is why is it runnable at all? The install_procedure call has an argument of '' for image types it can work on; since you're under the Image, this should be dynamically changed based upon the characteristics of the image