plug-ins/script-fu/scripts/3d-outline.scm
2004-10-04 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/scripts/3d-outline.scm * plug-ins/script-fu/scripts/blended-logo.scm * plug-ins/script-fu/scripts/camo.scm * plug-ins/script-fu/scripts/clothify.scm * plug-ins/script-fu/scripts/flatland.scm * plug-ins/script-fu/scripts/glossy.scm * plug-ins/script-fu/scripts/land.scm * plug-ins/script-fu/scripts/predator.scm * plug-ins/script-fu/scripts/rendermap.scm * plug-ins/script-fu/scripts/ripply-anim.scm * plug-ins/script-fu/scripts/speed-text.scm * plug-ins/script-fu/scripts/spinning-globe.scm: applied patches from Kevin Cozens that define variables before first use (bug #153900).
This commit is contained in:

committed by
Sven Neumann

parent
8fd6576149
commit
2119f890d4
@ -20,10 +20,13 @@
|
||||
inGrain
|
||||
inGrad
|
||||
inWiden)
|
||||
|
||||
(set! theWidth inSize)
|
||||
(set! theHeight inSize)
|
||||
(set! theImage (car(gimp-image-new theWidth theHeight RGB)))
|
||||
(let* (
|
||||
(theWidth inSize)
|
||||
(theHeight inSize)
|
||||
(theImage (car (gimp-image-new theWidth theHeight RGB)))
|
||||
(theLayer)
|
||||
(thinLayer)
|
||||
)
|
||||
|
||||
(gimp-context-push)
|
||||
|
||||
@ -67,7 +70,7 @@
|
||||
|
||||
(gimp-display-new theImage)
|
||||
|
||||
(gimp-context-pop))
|
||||
(gimp-context-pop)))
|
||||
|
||||
(script-fu-register "script-fu-render-map"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Render _Map..."
|
||||
|
Reference in New Issue
Block a user