Always chain up in ::style-updated

This was not handled consistently, but the default handler
does useful things, so we should always chain up.
This commit is contained in:
Matthias Clasen
2011-02-07 07:30:37 -05:00
parent 14eb34874a
commit beb8c290d1
20 changed files with 40 additions and 10 deletions

View File

@ -997,7 +997,7 @@ gtk_message_dialog_style_updated (GtkWidget *widget)
{
gtk_widget_style_get (widget, "message-border",
&border_width, NULL);
gtk_container_set_border_width (GTK_CONTAINER (parent),
MAX (0, border_width - 7));
}