summaryrefslogtreecommitdiff
path: root/gtk/gtkpasswordentry.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-03-14 18:59:35 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-03-14 19:00:37 -0400
commit5251253fc00b601c1df9bc6a00f3aef67ea426c8 (patch)
treecdbc2207baef0f906b6ed9b4c2367d9e70590969 /gtk/gtkpasswordentry.c
parentf5e112fd2d802df6d2c60325dbf138f0c0241616 (diff)
downloadgtk+-5251253fc00b601c1df9bc6a00f3aef67ea426c8.tar.gz
password entry: a better Caps Lock icon
This is more in line with how Caps Lock is typically indicated.
Diffstat (limited to 'gtk/gtkpasswordentry.c')
-rw-r--r--gtk/gtkpasswordentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkpasswordentry.c b/gtk/gtkpasswordentry.c
index 887620750c..ee61d05c59 100644
--- a/gtk/gtkpasswordentry.c
+++ b/gtk/gtkpasswordentry.c
@@ -116,7 +116,7 @@ gtk_password_entry_init (GtkPasswordEntry *entry)
gtk_editable_init_delegate (GTK_EDITABLE (entry));
g_signal_connect_swapped (priv->entry, "notify::has-focus", G_CALLBACK (focus_changed), entry);
- priv->icon = gtk_image_new_from_icon_name ("dialog-warning-symbolic");
+ priv->icon = gtk_image_new_from_icon_name ("caps-lock-symbolic");
gtk_widget_set_tooltip_text (priv->icon, _("Caps Lock is on"));
gtk_container_add (GTK_CONTAINER (priv->box), priv->icon);