~ubuntu-branches/ubuntu/hardy/gimp/hardy-updates

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/scripts/select-to-pattern.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
(define (script-fu-selection-to-pattern image drawable desc filename)
27
27
 
28
28
  (let* (
29
 
        (selection-width)
30
 
        (selection-height)
31
 
        (selection-bounds)
32
 
        (select-offset-x)
33
 
        (select-offset-y)
34
 
        (pattern-draw-type)
35
 
        (pattern-image-type)
36
 
        (pattern-image)
37
 
        (pattern-draw)
38
 
        (filename2)
 
29
        (selection-width 0)
 
30
        (selection-height 0)
 
31
        (selection-bounds 0)
 
32
        (select-offset-x 0)
 
33
        (select-offset-y 0)
 
34
        (pattern-draw-type 0)
 
35
        (pattern-image-type 0)
 
36
        (pattern-image 0)
 
37
        (pattern-draw 0)
 
38
        (filename2 0)
39
39
        )
40
40
 
41
41
  (if (= (car (gimp-selection-is-empty image)) TRUE)