diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c index cdfb82f..82d0868 100644 --- a/panel-plugin/devices.c +++ b/panel-plugin/devices.c @@ -592,6 +592,7 @@ disks_refresh(GPtrArray * pdisks, GPtrArray *excluded_FSs) /* test for mnt_dir==none or neither block device nor NFS or system device */ if ( exclude || g_ascii_strcasecmp(pmntent->mnt_dir, "none") == 0 || + g_ascii_strcasecmp(pmntent->mnt_type, "fuse.gvfs-fuse-daemon") == 0 || !(g_str_has_prefix(pmntent->mnt_fsname, "/dev/") || g_str_has_prefix(pmntent->mnt_type, "fuse") || g_str_has_prefix(pmntent->mnt_type, "nfs") ||