mirror of https://github.com/GNOME/gimp.git
TinyScheme doesn't like inexact numbers to start with a decimal point.
2007-07-10 Kevin Cozens <kcozens@cvs.gnome.org> * plug-ins/script-fu/scripts/3dTruchet.scm: TinyScheme doesn't like inexact numbers to start with a decimal point. Added leading '0' to two instances of '.2'. svn path=/trunk/; revision=22908
This commit is contained in:
parent
49398233df
commit
a9e36ed3b0
|
@ -1,3 +1,9 @@
|
|||
2007-07-10 Kevin Cozens <kcozens@cvs.gnome.org>
|
||||
|
||||
* plug-ins/script-fu/scripts/3dTruchet.scm: TinyScheme doesn't like
|
||||
inexact numbers to start with a decimal point. Added leading '0' to
|
||||
two instances of '.2'.
|
||||
|
||||
2007-07-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/jpeg/jpeg.c
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
|
||||
(gimp-edit-blend temp-draw FG-BG-RGB-MODE NORMAL-MODE
|
||||
GRADIENT-SHAPEBURST-ANGULAR 100 0 REPEAT-NONE FALSE
|
||||
supersample 3 .2 TRUE
|
||||
supersample 3 0.2 TRUE
|
||||
size size (* size 2) (/ size 2))
|
||||
|
||||
(center-ellipse temp-img size (* size 2) outer-radius outer-radius
|
||||
|
@ -124,7 +124,7 @@
|
|||
|
||||
(gimp-edit-blend temp-draw2 FG-BG-RGB-MODE NORMAL-MODE
|
||||
GRADIENT-SHAPEBURST-ANGULAR 100 0 REPEAT-NONE FALSE
|
||||
supersample 3 .2 TRUE
|
||||
supersample 3 0.2 TRUE
|
||||
size size (* size 2) (* size 2))
|
||||
|
||||
(gimp-selection-none temp-img)
|
||||
|
|
Loading…
Reference in New Issue