Porting scripts to new API, marking layer names for translation

This commit is contained in:
Alexandre Prokoudine
2010-10-10 03:52:15 +04:00
parent e1a705c125
commit 0a4657ae9f
6 changed files with 27 additions and 27 deletions

View File

@ -74,10 +74,10 @@
(bumpmap (car (gimp-layer-new img
img-width img-height RGBA-IMAGE
"Bumpmap" 100 NORMAL-MODE)))
_"Bumpmap" 100 NORMAL-MODE)))
(gradient (car (gimp-layer-new img
img-width img-height RGBA-IMAGE
"Gradient" 100 NORMAL-MODE)))
_"Gradient" 100 NORMAL-MODE)))
)
(gimp-context-push)
@ -86,7 +86,7 @@
; Create bumpmap layer
(gimp-image-add-layer img bumpmap -1)
(gimp-image-insert-layer img bumpmap -1 -1)
(gimp-context-set-foreground '(0 0 0))
(gimp-context-set-background '(255 255 255))
(gimp-edit-fill bumpmap BACKGROUND-FILL)
@ -107,7 +107,7 @@
; Create gradient layer
(gimp-image-add-layer img gradient -1)
(gimp-image-insert-layer img gradient -1 -1)
(gimp-context-set-foreground ul-color)
(gimp-context-set-background lr-color)