gimp r27069 - in trunk: . plug-ins/script-fu/scripts
- From: martinn svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r27069 - in trunk: . plug-ins/script-fu/scripts
- Date: Sun, 28 Sep 2008 10:03:48 +0000 (UTC)
Author: martinn
Date: Sun Sep 28 10:03:48 2008
New Revision: 27069
URL: http://svn.gnome.org/viewvc/gimp?rev=27069&view=rev
Log:
* plug-ins/script-fu/scripts/add-bevel.scm (script-fu-add-bevel):
Rename 'select' to 'selection' since that is what it holds.
Modified:
trunk/ChangeLog
trunk/plug-ins/script-fu/scripts/add-bevel.scm
Modified: trunk/plug-ins/script-fu/scripts/add-bevel.scm
==============================================================================
--- trunk/plug-ins/script-fu/scripts/add-bevel.scm (original)
+++ trunk/plug-ins/script-fu/scripts/add-bevel.scm Sun Sep 28 10:03:48 2008
@@ -74,7 +74,7 @@
"Bumpmap"
100
NORMAL-MODE)))
- (select 0)
+ (selection 0)
)
(gimp-context-push)
@@ -107,7 +107,7 @@
)
; Store it for later.
- (set! select (car (gimp-selection-save image)))
+ (set! selection (car (gimp-selection-save image)))
; Try to lose the jaggies
(gimp-selection-feather image 2)
@@ -153,13 +153,13 @@
;
(if (= bevelling-whole-image TRUE)
(gimp-selection-none image) ; No selection to start with
- (gimp-selection-load select)
+ (gimp-selection-load selection)
)
; If they started with a selection, they can Select->Invert then
; Edit->Clear for a cutout.
; clean up
- (gimp-image-remove-channel image select)
+ (gimp-image-remove-channel image selection)
(if (= keep-bump-layer TRUE)
(gimp-drawable-set-visible bump-layer 0)
(gimp-image-remove-layer image bump-layer)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]