Codebase list xapp / ddf029c
favorite-vfs-file.c: Add thumbnailing preference to the filesystem info. This tells the app that it's ok to show the thumbnails by default. Nemo will have an extra check to skip individual files that aren't local (unless specifically enabled by folder/preview preferences. Michael Webster 3 years ago
1 changed file(s) with 7 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
578578 {
579579 g_file_info_set_attribute_boolean (info,
580580 G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
581 }
582
583 if (g_file_attribute_matcher_matches (matcher, G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW))
584 {
585 g_file_info_set_attribute_uint32 (info,
586 G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW,
587 G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL);
581588 }
582589
583590 g_file_attribute_matcher_unref (matcher);