[gegl] saturation: fix default color space, improve UI strings



commit c592e6681cba54913b70adf1e2505c4ad6773498
Author: Øyvind Kolås <pippin gimp org>
Date:   Thu Jul 4 14:51:29 2019 +0200

    saturation: fix default color space, improve UI strings

 operations/common/saturation.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/operations/common/saturation.c b/operations/common/saturation.c
index 205ce6299..bfe4fdf18 100644
--- a/operations/common/saturation.c
+++ b/operations/common/saturation.c
@@ -23,8 +23,8 @@
 #ifdef GEGL_PROPERTIES
 
 enum_start (gegl_saturation_type)
-  enum_value (GEGL_SATURATION_TYPE_CIE_LAB, "CIE-Lab", N_("CIE Lab / Lch"))
-  enum_value (GEGL_SATURATION_TYPE_NATIVE,  "linear",  N_("linear data, RGB"))
+  enum_value (GEGL_SATURATION_TYPE_NATIVE,  "linear",  N_("Linear data, RGB"))
+  enum_value (GEGL_SATURATION_TYPE_CIE_LAB, "CIE-Lab", N_("CIE Lab/Lch"))
   /* will also work on CMYK in the future */
   enum_value (GEGL_SATURATION_TYPE_CIE_YUV, "CIE-Yuv", N_("CIE Yuv"))
 enum_end (GeglSaturationType)
@@ -37,7 +37,7 @@ property_double (scale, _("Scale"), 1.0)
 property_enum (colorspace, _("Color Space"),
     description(_("Which color space to do interpolation in."))
     GeglSaturationType, gegl_saturation_type,
-    GEGL_SATURATION_TYPE_NATIVE)
+    GEGL_SATURATION_TYPE_CIE_LAB)
 
 #else
 


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