diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-02-07 07:30:37 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-02-07 07:30:37 -0500 |
commit | beb8c290d1c7a7b5307dfd9e4c446a91ad48a507 (patch) | |
tree | 350d69e7151865603e17923d28890353f2508426 /gtk/gtkentry.c | |
parent | 14eb34874a63719c77db36f10c615c70f9179e49 (diff) | |
download | gtk+-beb8c290d1c7a7b5307dfd9e4c446a91ad48a507.tar.gz |
Always chain up in ::style-updated
This was not handled consistently, but the default handler
does useful things, so we should always chain up.
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r-- | gtk/gtkentry.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index c9f3e7bc77..886f59aa77 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -4468,6 +4468,8 @@ gtk_entry_style_updated (GtkWidget *widget) gint focus_width; gboolean interior_focus; + GTK_WIDGET_CLASS (gtk_entry_parent_class)->style_updated (widget); + gtk_widget_style_get (widget, "focus-line-width", &focus_width, "interior-focus", &interior_focus, |