From ad62cb8cf948ae02e21a143fdcc8c80005b81d89 Mon Sep 17 00:00:00 2001 From: Yousuf Philips Date: Sun, 29 Mar 2020 23:07:26 +0400 Subject: [PATCH] hide android phone from network group --- thunar/thunar-device-monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunar/thunar-device-monitor.c b/thunar/thunar-device-monitor.c index a825e1c1..726aba64 100644 --- a/thunar/thunar-device-monitor.c +++ b/thunar/thunar-device-monitor.c @@ -577,7 +577,7 @@ thunar_device_monitor_mount_added (GVolumeMonitor *volume_monitor, return; /* skip ghoto locations, since those also have a volume */ - if (g_file_has_uri_scheme (location, "gphoto2")) + if (g_file_has_uri_scheme (location, "gphoto2") || g_file_has_uri_scheme (location, "mtp") ) { g_object_unref (location); return; -- 2.20.1