diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-06-06 21:18:07 +0300 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-06-06 21:18:07 +0300 |
commit | a22f2c850febf30d3ac05c24ac2a30c80472f58e (patch) | |
tree | d5567130118c6ca70f7f13cadd8d15008e388e68 /gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch | |
parent | 8b8785390c60db8d7983a1dd165c26a9c7e93c69 (diff) |
[nautilus] separated configuration for nautilus
Diffstat (limited to 'gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch')
-rw-r--r-- | gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch b/gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch new file mode 100644 index 00000000..54d5d5a5 --- /dev/null +++ b/gnome-base/nautilus/files/nautilus-3.14.2-unreadable-names.patch @@ -0,0 +1,28 @@ +From 29ed1dee800341e8fcde739d0561ecc9d14e7f10 Mon Sep 17 00:00:00 2001 +From: Carlos Soriano <carlos.soriano89@gmail.com> +Date: Fri, 22 Aug 2014 19:18:30 +0200 +Subject: nautilus-list-view: Avoid unreadable names + +Currently if the view is resized, the column name is resized as well +given that use ellipsization allowing the column to become unreadable. +To avoid that, use width-chars property to set a desired width, but at +the same time allowing the user to resize without limits the name column +if desired. + +https://bugzilla.gnome.org/show_bug.cgi?id=732004 + +diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c +index 8711af6..b361734 100644 +--- a/src/nautilus-list-view.c ++++ b/src/nautilus-list-view.c +@@ -2066,6 +2066,7 @@ create_and_set_up_tree_view (NautilusListView *view) + g_object_set (cell, + "ellipsize", PANGO_ELLIPSIZE_END, + "single-paragraph-mode", TRUE, ++ "width-chars", 30, + "xpad", 5, + NULL); + +-- +cgit v0.10.1 + |