It is currently Sat Jun 06, 2026 12:28 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 6 posts ] 
Author Message
 Post subject: Filters->Repeat Last and Filters->Re-show Last [SOLVED]
PostPosted: Mon Jun 17, 2013 4:30 pm  (#1) 
GIMP Version: 2.8.1
Operating System: Windows
OS Version: Win 7 x64
GIMP Experience: Basic Level

List any relevant plug-ins or scripts:
shape-path-0.91.scm
corrosion.scm




Hopefully this will be a simple answer for some knowledgeable individual.

I frequently use Ctrl-Shift-F to re-show the last filter I ran or even Ctrl-F to re-run the last filter with the same settings on a new layer. :bigthup

However, some filters, like the two mentioned above for example do not always let you use this feature.
It is there, just greyed out, inaccessible.
Can someone explain how this happens.

I find after running Shape Paths it consistently will not be accessible in the Filters->Repeat Last. However, the Corrosion script 'sometimes' will be accessible mostly not (greyed out).

What controls this functionality is the gist of my question?
Thanks in advance.


Last edited by fluffybunny on Mon Jun 17, 2013 11:25 pm, edited 1 time in total.

Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Filters->Repeat Last and Filters->Re-show Last
PostPosted: Mon Jun 17, 2013 5:33 pm  (#2) 
Offline
Script Coder
User avatar

Joined: Oct 25, 2010
Posts: 4812
I've been looking for the answer for a while, too :)

_________________
Image


Top
 Post subject: Re: Filters->Repeat Last and Filters->Re-show Last
PostPosted: Mon Jun 17, 2013 9:16 pm  (#3) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16013
That is a good question.

_________________
Image


Top
 Post subject: Re: Filters->Repeat Last and Filters->Re-show Last
PostPosted: Mon Jun 17, 2013 9:39 pm  (#4) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
In the past, I've run into this problem when scripts register using the deprecated form where the menu path is specified in the 'script-fu-register' procedure, rather than using a separate 'script-fu-menu-register'.

For example, instead of doing
(script-fu-register "script-fu-rectangle-path"
                    _"<Image>/Script-Fu/Shape Paths/_Rectangle..."
                    "Creates a rectangular path."
                    :
                    :
                    :
                    )


Scripts should now be registered with a call to both script-fu-register (specifying the command name):
(script-fu-register "script-fu-rectangle-path"
                    _"_Rectangle..."
                    "Creates a rectangular path."
                    :
                    :
                    :
                    )

and a call to 'script-fu-menu-register' (specifying the menu location):
(script-fu-menu-register "script-fu-rectangle-path"
                    _"<Image>/Script-Fu/Shape Paths" )

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Filters->Repeat Last and Filters->Re-show Last
PostPosted: Mon Jun 17, 2013 11:24 pm  (#5) 
:tyspin
That seems to have solved the issue. I guess I will just have to update any scripts that I notice are not working properly in regards to the Filters->Repeat last.

I am glad I asked this question as it would appear that others too have queried this behaviour.


Top
 Post subject: Re: Filters->Repeat Last and Filters->Re-show Last [SOLVED]
PostPosted: Tue Jun 18, 2013 10:48 am  (#6) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16013
Thank you saulgoode. :)

_________________
Image


Top
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group