From d3cecd65a5da94711315269415ef24f3896ce622 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 14 Mar 2019 20:03:34 -0400 Subject: password entry: Make the Caps Lock icon less prominent Set a style class, and theme the Caps Lock icon to be less promient, so it does not appear clickable. --- gtk/gtkpasswordentry.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gtk/gtkpasswordentry.c') diff --git a/gtk/gtkpasswordentry.c b/gtk/gtkpasswordentry.c index b096b3d578..08467ad509 100644 --- a/gtk/gtkpasswordentry.c +++ b/gtk/gtkpasswordentry.c @@ -118,6 +118,7 @@ gtk_password_entry_init (GtkPasswordEntry *entry) priv->icon = gtk_image_new_from_icon_name ("caps-lock-symbolic"); gtk_widget_set_tooltip_text (priv->icon, _("Caps Lock is on")); + gtk_style_context_add_class (gtk_widget_get_style_context (priv->icon), "caps-lock-indicator"); gtk_widget_set_cursor (priv->icon, gtk_widget_get_cursor (priv->entry)); gtk_container_add (GTK_CONTAINER (priv->box), priv->icon); -- cgit v1.2.1