From 453e7bd0902907f830b93fb527aa7559fa766c23 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 2 May 2015 19:00:42 -0400 Subject: [PATCH] Fix size of 2x icons in progress window --- chrome/content/zotero/xpcom/progressWindow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/xpcom/progressWindow.js b/chrome/content/zotero/xpcom/progressWindow.js index 4ba17faa6..9bbea312f 100644 --- a/chrome/content/zotero/xpcom/progressWindow.js +++ b/chrome/content/zotero/xpcom/progressWindow.js @@ -291,6 +291,7 @@ Zotero.ProgressWindow = function(_window){ this._image.setAttribute("flex", 0); this._image.style.width = "16px"; this._image.style.backgroundRepeat = "no-repeat"; + this._image.style.backgroundSize = "16px"; this.setIcon(iconSrc); this._hbox = _progressWindow.document.createElement("hbox");