From 0cfd6d2d01701f564b2a6e9f27a1b5112a30cac4 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Thu, 22 Oct 2015 20:16:25 +0200 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/decompose.c b/plug-ins/common/decompose.c index 7ef08bff29..a89bd78418 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}