From 40db5bc34746fdf640f80d31a8f45dc448e27ffe Mon Sep 17 00:00:00 2001 From: Victor Forsiuk Date: Wed, 24 Jan 2024 01:36:28 +0200 Subject: [PATCH] Fix a typo in the color equalizer module --- 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 68251746c191..2f4060b9b2a2 100644 --- a/src/iop/colorequal.c +++ b/src/iop/colorequal.c @@ -1710,7 +1710,7 @@ static gboolean _area_motion_notify_callback(GtkWidget *widget, / (g->points[1][0] - g->points[0][0]) + 0.5f) % NODES; g->on_node = fabsf(g->points[g->selected][1] - (float)event->y) < epsilon; - char *tooltip = g_strdup_printf(_("middle click to toggle sliders vibility\n\n%s"), + char *tooltip = g_strdup_printf(_("middle click to toggle sliders visibility\n\n%s"), DT_BAUHAUS_WIDGET(g->sat_sliders[g->selected])->label); gtk_widget_set_tooltip_text(widget, tooltip); g_free(tooltip);