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/gtkinfobar.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/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index e031fa21a2..45ca5fe336 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -495,6 +495,8 @@ gtk_info_bar_style_updated (GtkWidget *widget) gint content_area_spacing; gint content_area_border; + GTK_WIDGET_CLASS (gtk_info_bar_parent_class)->style_updated (widget); + gtk_widget_style_get (widget, "button-spacing", &button_spacing, "action-area-border", &action_area_border, |