diff options
author | Timm Bäder <mail@baedert.org> | 2017-04-30 21:53:05 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2017-05-01 21:21:40 +0200 |
commit | 5c4934cfc0ff71a967ae7dfed7561162d22509d0 (patch) | |
tree | c777b0878de5dcd37aac98a8ebd142cc0347a474 /gtk/gtkfontchooserwidget.c | |
parent | 92b0d2e8ea8b41ea914eb4d66b48cc7dd2d34b9d (diff) | |
download | gtk+-5c4934cfc0ff71a967ae7dfed7561162d22509d0.tar.gz |
Chain up in size-allocate implementations
Otherwise we're not setting an allocation at all.
Diffstat (limited to 'gtk/gtkfontchooserwidget.c')
-rw-r--r-- | gtk/gtkfontchooserwidget.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c index 54e86b985e..1b0a7e43c0 100644 --- a/gtk/gtkfontchooserwidget.c +++ b/gtk/gtkfontchooserwidget.c @@ -599,6 +599,8 @@ gtk_font_chooser_widget_size_allocate (GtkWidget *widget, GtkFontChooserWidget *self = GTK_FONT_CHOOSER_WIDGET (widget); GtkFontChooserWidgetPrivate *priv = gtk_font_chooser_widget_get_instance_private (self); + GTK_WIDGET_CLASS (gtk_font_chooser_widget_parent_class)->size_allocate (widget, allocation); + gtk_widget_size_allocate (priv->grid, allocation); } |