[gimp] Bug 756701 - Decomposing to HSL produces HSV layers



commit 0cfd6d2d01701f564b2a6e9f27a1b5112a30cac4
Author: Michael Natterer <mitch gimp org>
Date:   Thu Oct 22 20:16:25 2015 +0200

    Bug 756701 - Decomposing to HSL produces HSV layers
    
    Fix the name of the decomposed lightness layer to "lightness", it used
    to be "value" due to a copy/paste error. Spotted by Massimo.

 plug-ins/common/decompose.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plug-ins/common/decompose.c b/plug-ins/common/decompose.c
index 7ef08bf..a89bd78 100644
--- a/plug-ins/common/decompose.c
+++ b/plug-ins/common/decompose.c
@@ -147,7 +147,7 @@ static gchar   * generate_filename           (guint32              image_ID,
 
 #define CPN_HSL_H {"hue", N_("hue"), 0.0, 1.0, TRUE}
 #define CPN_HSL_S {"saturation", N_("saturation"), 0.0, 1.0, TRUE}
-#define CPN_HSL_L {"lightness", N_("value"), 0.0, 1.0, TRUE}
+#define CPN_HSL_L {"lightness", N_("lightness"), 0.0, 1.0, TRUE}
 
 #define CPN_CMYK_C {"cyan", N_("cyan-k"), 0.0, 1.0, TRUE}
 #define CPN_CMYK_M {"magenta", N_("magenta-k"), 0.0, 1.0, TRUE}


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