diff options
author | José Aliste <jaliste@src.gnome.org> | 2011-06-16 14:32:13 -0400 |
---|---|---|
committer | José Aliste <jaliste@src.gnome.org> | 2011-06-16 14:34:14 -0400 |
commit | 1da07caaeddbbfaeed708feda6ea97669b200995 (patch) | |
tree | c40ae8594de152c00fc3af191eca951f98fe0706 /gtk/gtkinfobar.c | |
parent | e8fb1bcb136e7a7653ababbd619dbfdc461b2fb7 (diff) | |
download | gtk+-1da07caaeddbbfaeed708feda6ea97669b200995.tar.gz |
info_bar: call style_updated at the end of info_bar_init
This fix a render bug where the infobar would not add borders
arount its content. Fix proposed by Benjamin Otte.
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index 64f3e940f2..70ed73436a 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -541,6 +541,7 @@ gtk_info_bar_init (GtkInfoBar *info_bar) info_bar->priv->action_area = action_area; gtk_widget_pop_composite_child (); + gtk_info_bar_style_updated (info_bar); } static GtkBuildableIface *parent_buildable_iface; |