~ubuntu-branches/ubuntu/intrepid/gimp/intrepid-updates

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/scripts/burn-in-anim.scm

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-02-03 03:07:19 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20080203030719-4s9wlbv30394rlrp
Tags: 2.4.4-1ubuntu1
* Merge from Debian unstable. (LP: #188828)
* Ubuntu remaining changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Remove the doc directory symlink in the preinst, and replace it with a
    directory.
  - Added NEWS, README and README.Debian to gimp.docs.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
        ;--- main variable: "bl-x" runs from 0 to layer-width
27
27
        (bl-x 0)
28
28
        (frame-nr 0)
29
 
        (img)
30
 
        (source-layer)
31
 
        (bg-source-layer)
32
 
        (source-layer-width)
33
 
        (bg-layer)
34
 
        (bg-layer-name)
35
 
        (bl-layer)
36
 
        (bl-layer-name)
37
 
        (bl-mask)
38
 
        (bl-layer-width)
39
 
        (bl-height)
40
 
        (bl-x-off)
41
 
        (bl-y-off)
42
 
        (nofadeout-bl-x-off)
43
 
        (nofadeout-bl-width)
44
 
        (blended-layer)
45
 
        (img-display)
 
29
        (img 0)
 
30
        (source-layer 0)
 
31
        (bg-source-layer 0)
 
32
        (source-layer-width 0)
 
33
        (bg-layer 0)
 
34
        (bg-layer-name 0)
 
35
        (bl-layer 0)
 
36
        (bl-layer-name 0)
 
37
        (bl-mask 0)
 
38
        (bl-layer-width 0)
 
39
        (bl-height 0)
 
40
        (bl-x-off 0)
 
41
        (bl-y-off 0)
 
42
        (nofadeout-bl-x-off 0)
 
43
        (nofadeout-bl-width 0)
 
44
        (blended-layer 0)
 
45
        (img-display 0)
46
46
        )
47
47
 
48
48
    (if (< speed 1)