From baa7a94fe447e610631af0796b8f3ff776e29109 Mon Sep 17 00:00:00 2001 From: Victor Forsiuk Date: Sat, 16 Mar 2024 14:45:11 +0200 Subject: [PATCH 1/2] The term is spelled chromaticity, not chromacity --- src/iop/colorequal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/iop/colorequal.c b/src/iop/colorequal.c index c29048d50284..728e081dae7c 100644 --- a/src/iop/colorequal.c +++ b/src/iop/colorequal.c @@ -2518,9 +2518,9 @@ void gui_init(struct dt_iop_module_t *self) gtk_widget_set_tooltip_text(g->threshold, _("set saturation threshold for the guided filter.\n" - " - decrease to allow changes in areas with low chromacity\n" - " - increase to restrict changes to higher chromacities.\n" - " increases contrast and avoids brightness changes in low chromacity areas.")); + " - decrease to allow changes in areas with low chromaticity\n" + " - increase to restrict changes to higher chromaticities\n" + " increases contrast and avoids brightness changes in low chromaticity areas")); g->contrast = dt_bauhaus_slider_from_params(self, "contrast"); dt_bauhaus_slider_set_digits(g->contrast, 3); From 922a375c8104290918acbc53dd9aac463480c412 Mon Sep 17 00:00:00 2001 From: Victor Forsiuk Date: Sat, 16 Mar 2024 20:07:50 +0200 Subject: [PATCH 2/2] Minor punctuation fix in tooltip --- src/iop/colorequal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iop/colorequal.c b/src/iop/colorequal.c index 728e081dae7c..0f19568bb3ab 100644 --- a/src/iop/colorequal.c +++ b/src/iop/colorequal.c @@ -2527,7 +2527,7 @@ void gui_init(struct dt_iop_module_t *self) gtk_widget_set_tooltip_text(g->contrast, _("set saturation contrast for the guided filter.\n" " - increase to favour sharp transitions between saturations leading to higher contrast\n" - " - decrease for smoother transitions.")); + " - decrease for smoother transitions")); g->param_size = dt_bauhaus_slider_from_params(self, "param_size"); dt_bauhaus_slider_set_digits(g->param_size, 1);