diff --git a/app/operations/gimpcurvesconfig.c b/app/operations/gimpcurvesconfig.c index 1c3c39c0fe..fe2d0fd64f 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_NON_LINEAR, 0); + GIMP_TRC_LINEAR, 0); /* "linear" is a compat property initially kept for compatibility * reason, in particular for config parsing. It's not needed anymore @@ -117,7 +117,7 @@ gimp_curves_config_class_init (GimpCurvesConfigClass *klass) "linear", _("Linear"), _("Work on linear RGB (this property is ignored; use \"trc\" instead)"), - FALSE, 0); + TRUE, 0); GIMP_CONFIG_PROP_ENUM (object_class, PROP_CHANNEL, "channel", diff --git a/app/operations/gimplevelsconfig.c b/app/operations/gimplevelsconfig.c index 158bd6f453..d88f358999 100644 --- a/app/operations/gimplevelsconfig.c +++ b/app/operations/gimplevelsconfig.c @@ -111,7 +111,7 @@ gimp_levels_config_class_init (GimpLevelsConfigClass *klass) _("Tone Reproduction Curve"), _("Work on linear or perceptual RGB, or following the image's TRC"), GIMP_TYPE_TRC_TYPE, - GIMP_TRC_NON_LINEAR, 0); + GIMP_TRC_LINEAR, 0); /* "linear" is a compat property initially kept for compatibility * reason, in particular for config parsing. It's not needed anymore @@ -123,7 +123,7 @@ gimp_levels_config_class_init (GimpLevelsConfigClass *klass) "linear", _("Linear"), _("Work on linear RGB (this property is ignored; use \"trc\" instead)"), - FALSE, 0); + TRUE, 0); GIMP_CONFIG_PROP_ENUM (object_class, PROP_CHANNEL, "channel",