diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-02-25 18:25:52 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-02-25 18:29:15 -0500 |
commit | a9c05193a7b7366989b75471150b1f6d644e2285 (patch) | |
tree | 3e5f170dd8945c626ce65459c44f23e5f38a685d /gtk/gtkshortcutswindow.c | |
parent | 2d4e1e248da39aba20ca358c7c1764747387b47e (diff) | |
download | gtk+-a9c05193a7b7366989b75471150b1f6d644e2285.tar.gz |
Drop the expand property
The hexpand and vexpand properties are sufficient.
Diffstat (limited to 'gtk/gtkshortcutswindow.c')
-rw-r--r-- | gtk/gtkshortcutswindow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkshortcutswindow.c b/gtk/gtkshortcutswindow.c index 7f575032e0..2e252054a7 100644 --- a/gtk/gtkshortcutswindow.c +++ b/gtk/gtkshortcutswindow.c @@ -905,7 +905,8 @@ gtk_shortcuts_window_init (GtkShortcutsWindow *self) GTK_WIDGET (self)); priv->stack = g_object_new (GTK_TYPE_STACK, - "expand", TRUE, + "hexpand", TRUE, + "vexpand", TRUE, "homogeneous", TRUE, "transition-type", GTK_STACK_TRANSITION_TYPE_CROSSFADE, NULL); |