summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-properties-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r--src/file-manager/fm-properties-window.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index 576fd107..a583b073 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -2664,7 +2664,16 @@ should_show_accessed_date (FMPropertiesWindow *window)
static gboolean
should_show_modified_date (FMPropertiesWindow *window)
{
- return !is_multi_file_window (window);
+ CajaFile *file;
+
+ if (is_multi_file_window (window))
+ return FALSE;
+
+ file = get_original_file (window);
+ if ((file != NULL) && caja_file_can_unmount (file))
+ return FALSE;
+
+ return TRUE;
}
static gboolean