From 10791afe7848d3fa3a2a66958a779e905294c4b8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 7 Oct 2014 21:26:02 -0400 Subject: Use monospace font for permissions This makes the permission strings line up nicely. With other fonts, the wide w really throws off the alignment. https://bugzilla.gnome.org/show_bug.cgi?id=737904 --- src/nautilus-list-view.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c index b361734f4..d1abe4873 100644 --- a/src/nautilus-list-view.c +++ b/src/nautilus-list-view.c @@ -2084,6 +2084,11 @@ create_and_set_up_tree_view (NautilusListView *view) "xalign", xalign, "xpad", 5, NULL); + if (!strcmp (name, "permissions")) { + g_object_set (cell, + "family", "Monospace", + NULL); + } view->details->cells = g_list_append (view->details->cells, cell); column = gtk_tree_view_column_new_with_attributes (label, -- cgit v1.2.1