[gegl] Use gamma hint for UI in gaussian-blur and pixelise



commit a5c7770e26849a71ad0221eaa17a78226b6186a8
Author: Ãyvind KolÃs <pippin gimp org>
Date:   Fri Mar 30 20:21:15 2012 +0100

    Use gamma hint for UI in gaussian-blur and pixelise

 operations/common/gaussian-blur.c |    4 ++--
 operations/common/pixelise.c      |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/operations/common/gaussian-blur.c b/operations/common/gaussian-blur.c
index 004ec76..3e98241 100644
--- a/operations/common/gaussian-blur.c
+++ b/operations/common/gaussian-blur.c
@@ -27,9 +27,9 @@
 
 #ifdef GEGL_CHANT_PROPERTIES
 
-gegl_chant_double_ui (std_dev_x, _("Size X"), 0.0, 10000.0, 4.0, 0.0, 1000.0, 1.0,
+gegl_chant_double_ui (std_dev_x, _("Size X"), 0.0, 10000.0, 4.0, 0.0, 1000.0, 1.5,
    _("Standard deviation for the horizontal axis. (multiply by ~2 to get radius)"))
-gegl_chant_double_ui (std_dev_y, _("Size Y"), 0.0, 10000.0, 4.0, 0.0, 1000.0, 1.0,
+gegl_chant_double_ui (std_dev_y, _("Size Y"), 0.0, 10000.0, 4.0, 0.0, 1000.0, 1.5,
    _("Standard deviation for the vertical axis. (multiply by ~2 to get radius.)"))
 gegl_chant_string (filter, _("Filter"), "auto",
    _("Optional parameter to override the automatic selection of blur filter. "
diff --git a/operations/common/pixelise.c b/operations/common/pixelise.c
index e6076dc..0a90920 100644
--- a/operations/common/pixelise.c
+++ b/operations/common/pixelise.c
@@ -22,9 +22,9 @@
 
 #ifdef GEGL_CHANT_PROPERTIES
 
-gegl_chant_int_ui (size_x, _("Block Width"),  1, 123456, 16, 1, 2048,
+gegl_chant_int_ui (size_x, _("Block Width"),  1, 123456, 16, 1, 2048, 1.5,
    _("Width of blocks in pixels"))
-gegl_chant_int_ui (size_y, _("Block Height"), 1, 123456, 16, 1, 2048,
+gegl_chant_int_ui (size_y, _("Block Height"), 1, 123456, 16, 1, 2048, 1.5,
    _("Height of blocks in pixels"))
 
 #else



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]