www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 453e7bd0902907f830b93fb527aa7559fa766c23
parent a2b6df1014b130ff9d821ce4ecd97ee9c6194b0b
Author: Dan Stillman <dan@danstillman.com>
Date:   Sat,  2 May 2015 19:00:42 -0400

Fix size of 2x icons in progress window

Diffstat:
Mchrome/content/zotero/xpcom/progressWindow.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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");