Use hi-res attachment file bullets
This commit is contained in:
parent
d6064cfeba
commit
d7309ca64e
1 changed files with 3 additions and 2 deletions
|
@ -1139,9 +1139,10 @@ Zotero.ItemTreeView.prototype.getImageSrc = function(row, col)
|
|||
if (item.isFileAttachment()) {
|
||||
let exists = item.fileExistsCached();
|
||||
if (exists !== null) {
|
||||
let suffix = Zotero.hiDPISuffix;
|
||||
return exists
|
||||
? "chrome://zotero/skin/bullet_blue.png"
|
||||
: "chrome://zotero/skin/bullet_blue_empty.png";
|
||||
? `chrome://zotero/skin/bullet_blue{$suffix}.png`
|
||||
: `chrome://zotero/skin/bullet_blue_empty{$suffix}.png`;
|
||||
}
|
||||
|
||||
item.fileExists()
|
||||
|
|
Loading…
Add table
Reference in a new issue