diff options
author | Timm Bäder <mail@baedert.org> | 2016-10-02 17:37:22 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-16 18:17:21 +0200 |
commit | f45dadadd00d892ba16dc081240987425bc32346 (patch) | |
tree | 181fc50993716de719c7d993c9d66bb7b2adb090 /gtk/gtkinfobar.c | |
parent | c301357627172e4aeb3a7cb8d04fd5428d930df4 (diff) | |
download | gtk+-f45dadadd00d892ba16dc081240987425bc32346.tar.gz |
box: Remove 'padding' child property
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index cc5a5b7104..c925538afb 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -613,7 +613,7 @@ gtk_info_bar_add_action_widget (GtkInfoBar *info_bar, g_warning ("Only 'activatable' widgets can be packed into the action area of a GtkInfoBar"); gtk_box_pack_end (GTK_BOX (info_bar->priv->action_area), - child, FALSE, FALSE, 0); + child, FALSE, FALSE); if (response_id == GTK_RESPONSE_HELP) gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (info_bar->priv->action_area), child, TRUE); |