diff --git a/chrome/content/zotero/xpcom/collectionTreeView.js b/chrome/content/zotero/xpcom/collectionTreeView.js index 776c12c6f..513b5b47a 100644 --- a/chrome/content/zotero/xpcom/collectionTreeView.js +++ b/chrome/content/zotero/xpcom/collectionTreeView.js @@ -503,8 +503,12 @@ Zotero.CollectionTreeView.prototype.getImageSrc = function(row, col) return "chrome://zotero-platform/content/treesource-collection.png"; case 'search': - // TODO: is this platform independent? - return "chrome://zotero-platform/content/treesource-search.png"; + var str = "chrome://zotero-platform/content/treesource-search"; + if ((source.ref.id + "").match(/^8634533000/)) { // 'UNFILED000' + str += '-virtual'; + } + str += ".png"; + return str; case 'header': if (source.ref.id == 'group-libraries-header') {