summaryrefslogtreecommitdiff
path: root/gtk/gtkshortcutssection.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-04-28 19:53:33 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-04-28 20:00:12 -0400
commit5f01f6f36b08b3615e129525b341f9446ae32954 (patch)
tree86da2762061216ed79f073e1b3a1a220332c5450 /gtk/gtkshortcutssection.c
parent5ec53e6a11325a80bc9c6b9236fb8b09ef3c53df (diff)
downloadgtk+-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.c3
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,