diff options
Diffstat (limited to 'plug-ins/script-fu/scripts')
-rw-r--r-- | plug-ins/script-fu/scripts/distress-selection.scm | 2 | ||||
-rw-r--r-- | plug-ins/script-fu/scripts/palette-export.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plug-ins/script-fu/scripts/distress-selection.scm b/plug-ins/script-fu/scripts/distress-selection.scm index ef87b79..753e325 100644 --- a/plug-ins/script-fu/scripts/distress-selection.scm +++ b/plug-ins/script-fu/scripts/distress-selection.scm @@ -111,7 +111,7 @@ SF-IMAGE "The image" 0 SF-DRAWABLE "The layer" 0 SF-ADJUSTMENT _"_Threshold (bigger 1<-->254 smaller)" '(127 1 254 1 10 0 0) - SF-ADJUSTMENT _"_Spread" '(8 0 1000 1 10 0 1) + SF-ADJUSTMENT _"_Spread" '(8 0 512 1 10 0 1) SF-ADJUSTMENT _"_Granularity (1 is low)" '(4 1 25 1 10 0 1) SF-ADJUSTMENT _"S_mooth" '(2 1 150 1 10 0 1) SF-TOGGLE _"Smooth hor_izontally" TRUE diff --git a/plug-ins/script-fu/scripts/palette-export.scm b/plug-ins/script-fu/scripts/palette-export.scm index ecb16df..d0a51e7 100644 --- a/plug-ins/script-fu/scripts/palette-export.scm +++ b/plug-ins/script-fu/scripts/palette-export.scm @@ -90,7 +90,7 @@ (define (color-rgb-to-css color) (string-append "rgb(" (number->string (color-get-red color)) ", " (number->string (color-get-green color)) - ", " (number->string (color-get-blue color)) ")") + ", " (number->string (color-get-blue color)) ");") ) ; Convert a color to a simple pair of braces with comma separated values |