www

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

commit bb38c974bf6410f7e253ad5047239b74c8d8bd2b
parent 383eac465731aba582379eace47a72c8ec8ce9bd
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 22 Feb 2017 21:46:06 -0500

Fix error importing from file (regression from 32bebeb1cd0)

Diffstat:
Mchrome/content/zotero/fileInterface.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js @@ -339,7 +339,7 @@ var Zotero_File_Interface = new function() { progressWin.changeHeadline(Zotero.getString('fileInterface.importing')); var icon = 'chrome://zotero/skin/treesource-unfiled' + (Zotero.hiDPI ? "@2x" : "") + '.png'; let progress = new progressWin.ItemProgress( - icon, translation.path ? OS.Path.basename(translation.label) : translators[0].label + icon, translation.path ? OS.Path.basename(translation.path) : translators[0].label ); progressWin.show();