[nautilus] nautilus-list-view: don't show type column
- From: Carlos Soriano Sánchez <csoriano src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus] nautilus-list-view: don't show type column
- Date: Tue, 17 Feb 2015 10:30:55 +0000 (UTC)
commit 2164957016df318444eb1ec444f6da763c3ba9a3
Author: Carlos Soriano <csoriano gnome org>
Date: Mon Feb 16 14:16:53 2015 +0100
nautilus-list-view: don't show type column
The extension/icon should be enough
https://bugzilla.gnome.org/show_bug.cgi?id=744237
.../org.gnome.nautilus.gschema.xml.in | 4 ++--
src/nautilus-list-view.c | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libnautilus-private/org.gnome.nautilus.gschema.xml.in
b/libnautilus-private/org.gnome.nautilus.gschema.xml.in
index be81a10..f2dbd33 100644
--- a/libnautilus-private/org.gnome.nautilus.gschema.xml.in
+++ b/libnautilus-private/org.gnome.nautilus.gschema.xml.in
@@ -224,12 +224,12 @@
<_description>Default zoom level used by the list view.</_description>
</key>
<key name="default-visible-columns" type="as">
- <default>[ 'name', 'size', 'type', 'date_modified' ]</default>
+ <default>[ 'name', 'size', 'date_modified' ]</default>
<_summary>Default list of columns visible in the list view</_summary>
<_description>Default list of columns visible in the list view.</_description>
</key>
<key name="default-column-order" type="as">
- <default>[ 'name', 'size', 'type', 'date_modified' ]</default>
+ <default>[ 'name', 'size', 'date_modified' ]</default>
<_summary>Default column order in the list view</_summary>
<_description>Default column order in the list view.</_description>
</key>
diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c
index fdcce74..0e1485a 100644
--- a/src/nautilus-list-view.c
+++ b/src/nautilus-list-view.c
@@ -148,19 +148,19 @@ static char **get_default_column_order (NautilusListVi
G_DEFINE_TYPE (NautilusListView, nautilus_list_view, NAUTILUS_TYPE_VIEW);
static const char * default_search_visible_columns[] = {
- "name", "size", "type", "where", NULL
+ "name", "size", "where", NULL
};
static const char * default_search_columns_order[] = {
- "name", "size", "type", "where", NULL
+ "name", "size", "where", NULL
};
static const char * default_trash_visible_columns[] = {
- "name", "size", "type", "trashed_on", "trash_orig_path", NULL
+ "name", "size", "trashed_on", "trash_orig_path", NULL
};
static const char * default_trash_columns_order[] = {
- "name", "size", "type", "trashed_on", "trash_orig_path", NULL
+ "name", "size", "trashed_on", "trash_orig_path", NULL
};
static const gchar*
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]