We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99cf0ca commit c490029Copy full SHA for c490029
src/caja-spatial-window.c
@@ -1002,10 +1002,8 @@ caja_spatial_window_init (CajaSpatialWindow *window)
1002
pane = caja_window_pane_new (win);
1003
win->details->panes = g_list_prepend (win->details->panes, pane);
1004
1005
- /* FIXME: changing this to gtk_box_new breaks desktop :-/
1006
- * see https://github.com/mate-desktop/caja/issues/591
1007
- */
1008
- vbox = gtk_vbox_new (FALSE, 0);
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
+ gtk_box_set_homogeneous (GTK_BOX (vbox), TRUE);
1009
gtk_widget_set_hexpand (vbox, TRUE);
1010
gtk_widget_set_vexpand (vbox, TRUE);
1011
gtk_grid_attach (GTK_GRID (CAJA_WINDOW (window)->details->grid),
0 commit comments