Fix #982, 5.0: File dots not showing up for child attachments

This commit is contained in:
Dan Stillman 2016-04-30 19:18:59 -04:00
parent 6afce0cf22
commit 14ce455483

View File

@ -1135,8 +1135,8 @@ Zotero.ItemTreeView.prototype.getImageSrc = function(row, col)
if (exists !== null) { if (exists !== null) {
let suffix = Zotero.hiDPISuffix; let suffix = Zotero.hiDPISuffix;
return exists return exists
? `chrome://zotero/skin/bullet_blue{$suffix}.png` ? `chrome://zotero/skin/bullet_blue${suffix}.png`
: `chrome://zotero/skin/bullet_blue_empty{$suffix}.png`; : `chrome://zotero/skin/bullet_blue_empty${suffix}.png`;
} }
item.fileExists() item.fileExists()