commit 14ce4554835ae84d0e54327d1bcc165df9d71f24 parent 6afce0cf220bb4ed589239e63e3b87c1a74332fc Author: Dan Stillman <dstillman@zotero.org> Date: Sat, 30 Apr 2016 19:18:59 -0400 Fix #982, 5.0: File dots not showing up for child attachments Diffstat:
| M | chrome/content/zotero/xpcom/itemTreeView.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/itemTreeView.js b/chrome/content/zotero/xpcom/itemTreeView.js @@ -1135,8 +1135,8 @@ Zotero.ItemTreeView.prototype.getImageSrc = function(row, col) if (exists !== null) { let suffix = Zotero.hiDPISuffix; return exists - ? `chrome://zotero/skin/bullet_blue{$suffix}.png` - : `chrome://zotero/skin/bullet_blue_empty{$suffix}.png`; + ? `chrome://zotero/skin/bullet_blue${suffix}.png` + : `chrome://zotero/skin/bullet_blue_empty${suffix}.png`; } item.fileExists()