summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-list-view.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2017-10-10 12:55:40 +0300
committermonsta <[email protected]>2017-10-10 12:55:40 +0300
commitb1f4107ff7211657e7e35304879aade488322647 (patch)
tree98d5b76e962ccb40e6820c8cf3ba0279999e9511 /src/file-manager/fm-list-view.c
parent884a36043687ed48c85bf65fc1f08f19955f6329 (diff)
downloadcaja-b1f4107ff7211657e7e35304879aade488322647.tar.bz2
caja-b1f4107ff7211657e7e35304879aade488322647.tar.xz
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
Diffstat (limited to 'src/file-manager/fm-list-view.c')
-rw-r--r--src/file-manager/fm-list-view.c2
1 files changed, 1 insertions, 1 deletions
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 ("<b>", label_text, "</b>", NULL);