From b1f4107ff7211657e7e35304879aade488322647 Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 10 Oct 2017 12:55:40 +0300 Subject: View -> Visible Columns: fix vertical expand of dialog content this menu item is only visible when list view is selected, so I'm not surprised we missed it --- src/file-manager/fm-list-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/file-manager/fm-list-view.c b/src/file-manager/fm-list-view.c index 85f6bad8..bb1df041 100644 --- a/src/file-manager/fm-list-view.c +++ b/src/file-manager/fm-list-view.c @@ -2534,7 +2534,7 @@ create_column_editor (FMListView *view) box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); gtk_container_set_border_width (GTK_CONTAINER (box), 12); gtk_widget_show (box); - gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (window))), box); + gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (window))), box, TRUE, TRUE, 0); label_text = _("Choose the order of information to appear in this folder:"); str = g_strconcat ("", label_text, "", NULL); -- cgit v1.2.1