diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-04-28 19:53:33 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-04-28 20:00:12 -0400 |
commit | 5f01f6f36b08b3615e129525b341f9446ae32954 (patch) | |
tree | 86da2762061216ed79f073e1b3a1a220332c5450 /gtk/gtkshortcutssection.c | |
parent | 5ec53e6a11325a80bc9c6b9236fb8b09ef3c53df (diff) | |
download | gtk+-5f01f6f36b08b3615e129525b341f9446ae32954.tar.gz |
Drop GtkStack:homogeneous
We have hhomogeneous and vhomogeneous properties
that can be set individually.
Fixes: #2673
Diffstat (limited to 'gtk/gtkshortcutssection.c')
-rw-r--r-- | gtk/gtkshortcutssection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkshortcutssection.c b/gtk/gtkshortcutssection.c index 337ece2539..348889996a 100644 --- a/gtk/gtkshortcutssection.c +++ b/gtk/gtkshortcutssection.c @@ -418,7 +418,8 @@ gtk_shortcuts_section_init (GtkShortcutsSection *self) gtk_box_set_spacing (GTK_BOX (self), 22); self->stack = g_object_new (GTK_TYPE_STACK, - "homogeneous", TRUE, + "hhomogeneous", TRUE, + "vhomogeneous", TRUE, "transition-type", GTK_STACK_TRANSITION_TYPE_SLIDE_LEFT_RIGHT, "vexpand", TRUE, "visible", TRUE, |