[nautilus] nautilus-properties-window.c: Display only Folder
- From: Ondrej Holy <oholy src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus] nautilus-properties-window.c: Display only Folder
- Date: Fri, 2 Jul 2021 05:36:05 +0000 (UTC)
commit 38a7ea92b76b5e6e5210cbab0478deed80d09985
Author: Lucas Chollet <lucas chollet free fr>
Date: Sat Jan 16 11:46:48 2021 +0100
nautilus-properties-window.c: Display only Folder
The description of a folder in the properties dialog precise the
mime-type but it is useless for folders
Test if the mime type is not equal to "inode/directory" before
adding it to the detailed string.
https://gitlab.gnome.org/GNOME/nautilus/-/issues/1737
src/nautilus-properties-window.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index 8289b6e0b..68fb0276d 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -1320,7 +1320,7 @@ value_field_update (GtkLabel *label,
g_autofree char *mime_type = file_list_get_string_attribute (file_list,
"mime_type",
inconsistent_string);
- if (strcmp (mime_type, inconsistent_string))
+ if (strcmp (mime_type, inconsistent_string) && strcmp (mime_type, "inode/directory"))
{
g_autofree char *tmp = g_steal_pointer (&attribute_value);
attribute_value = g_strdup_printf (C_("MIME type description (MIME type)", "%s (%s)"), tmp,
mime_type);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]