summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2013-04-17 14:36:11 -0700
committerPhilip Langdale <philipl@overt.org>2013-04-17 14:38:38 -0700
commit473cd1356403c28b83347b1a62ec17a2198288d6 (patch)
tree6a5d708ace6cde178a99c6946a4a2a2ddc483102
parent9102e80796a7f424eb4fd7e1a6f69721218c8bfb (diff)
downloadgvfs-473cd1356403c28b83347b1a62ec17a2198288d6.tar.gz
MTP: Use actual standard name for SD Card icon.
The last name I chose was deprecated. What fun. https://bugzilla.gnome.org/show_bug.cgi?id=698174
-rw-r--r--daemon/gvfsbackendmtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/gvfsbackendmtp.c b/daemon/gvfsbackendmtp.c
index c680991f..b5e4b904 100644
--- a/daemon/gvfsbackendmtp.c
+++ b/daemon/gvfsbackendmtp.c
@@ -705,11 +705,11 @@ get_storage_info (LIBMTP_devicestorage_t *storage, GFileInfo *info) {
break;
case PTP_ST_RemovableROM:
g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
- icon = g_themed_icon_new_with_default_fallbacks ("gnome-dev-media-sdmmc");
+ icon = g_themed_icon_new_with_default_fallbacks ("media-flash-sd");
break;
case PTP_ST_RemovableRAM:
g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, FALSE);
- icon = g_themed_icon_new_with_default_fallbacks ("gnome-dev-media-sdmmc");
+ icon = g_themed_icon_new_with_default_fallbacks ("media-flash-sd");
break;
case PTP_ST_FixedRAM:
default: