From 4073371416776fb697d1654cd879bc3601f41778 Mon Sep 17 00:00:00 2001 From: Automeris naranja <104251-automerisnaranja@users.noreply.gitlab.gnome.org> Date: Sun, 12 Feb 2023 17:38:24 -0300 Subject: [PATCH] gtksearchentry: Apply header capitalization to the "Clear entry" tooltip HIG advises to use header capitalization in tooltip texts. https://developer.gnome.org/hig/patterns/feedback/tooltips.html --- gtk/gtksearchentry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtksearchentry.c b/gtk/gtksearchentry.c index ed01f82d5a..2cbecf387e 100644 --- a/gtk/gtksearchentry.c +++ b/gtk/gtksearchentry.c @@ -623,7 +623,7 @@ gtk_search_entry_init (GtkSearchEntry *entry) "accessible-role", GTK_ACCESSIBLE_ROLE_PRESENTATION, "icon-name", "edit-clear-symbolic", NULL); - gtk_widget_set_tooltip_text (entry->icon, _("Clear entry")); + gtk_widget_set_tooltip_text (entry->icon, _("Clear Entry")); gtk_widget_set_parent (entry->icon, GTK_WIDGET (entry)); gtk_widget_set_child_visible (entry->icon, FALSE);