summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2015-12-10 18:54:28 +0100
committerOndrej Holy <oholy@redhat.com>2015-12-11 10:38:03 +0100
commit9843229185fcbd9bdb5581dd07139e62d2b3eaed (patch)
tree4bdeedbb20fa16b7a77cbb78f6a8c6bcbf6a8c42 /common
parent1758ee7778cf60533494eb455e32b6d91f4b87fa (diff)
downloadgvfs-9843229185fcbd9bdb5581dd07139e62d2b3eaed.tar.gz
mtp: Use phone icon for MTP devices
Majority of MTP devices are mobile phones nowadays. Use "phone" icon for them instead of "multimedia-player" icon to reflect this trend. https://bugzilla.gnome.org/show_bug.cgi?id=759042
Diffstat (limited to 'common')
-rw-r--r--common/gvfsgphoto2utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/gvfsgphoto2utils.c b/common/gvfsgphoto2utils.c
index 5d8fe17e..8608e515 100644
--- a/common/gvfsgphoto2utils.c
+++ b/common/gvfsgphoto2utils.c
@@ -125,7 +125,7 @@ g_vfs_get_volume_icon (GUdevDevice *device)
if (g_udev_device_has_property (device, "ID_MEDIA_PLAYER_ICON_NAME"))
return g_strdup (g_udev_device_get_property (device, "ID_MEDIA_PLAYER_ICON_NAME"));
else if (g_udev_device_has_property (device, "ID_MEDIA_PLAYER"))
- return g_strdup ("multimedia-player");
+ return g_strdup ("phone");
else
return g_strdup ("camera-photo");
}
@@ -136,7 +136,7 @@ g_vfs_get_volume_symbolic_icon (GUdevDevice *device)
if (g_udev_device_has_property (device, "ID_MEDIA_PLAYER_ICON_NAME"))
return g_strconcat (g_udev_device_get_property (device, "ID_MEDIA_PLAYER_ICON_NAME"), "-symbolic", NULL);
else if (g_udev_device_has_property (device, "ID_MEDIA_PLAYER"))
- return g_strdup ("multimedia-player-symbolic");
+ return g_strdup ("phone-symbolic");
else
return g_strdup ("camera-photo-symbolic");
}