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.
This commit is contained in:
Michael Natterer
2015-10-22 20:16:25 +02:00
parent 68a9835d56
commit 0cfd6d2d01

View File

@ -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}