From 7b4f0993e8e6635269c6aed67651a0bf99c90cd1 Mon Sep 17 00:00:00 2001 From: Jehan Date: Fri, 6 Mar 2026 21:39:17 +0100 Subject: [PATCH] Issue #15962: "gimp:curves" set to Perceptual by default. Per discussions with Pippin, Linear as default may not be the most expected, though it has scenarios where it is still better. Curves is easier because it was not possible to call it through the API at all in the 3.0 series. I'll verify a bit for Levels, but I may just do a GUI-only change for this one. --- app/operations/gimpcurvesconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/operations/gimpcurvesconfig.c b/app/operations/gimpcurvesconfig.c index e35751669f..395b970534 100644 --- a/app/operations/gimpcurvesconfig.c +++ b/app/operations/gimpcurvesconfig.c @@ -105,7 +105,7 @@ gimp_curves_config_class_init (GimpCurvesConfigClass *klass) _("Tone Reproduction Curve"), _("Work on linear or perceptual RGB, or following the image's TRC"), GIMP_TYPE_TRC_TYPE, - GIMP_TRC_LINEAR, 0); + GIMP_TRC_PERCEPTUAL, 0); /* "linear" is a compat property initially kept for compatibility * reason, in particular for config parsing. It's not needed anymore