mirror of
https://github.com/zotero/zotero.git
synced 2026-09-19 00:01:31 +00:00
still call Zotero.wait() when not using QuickCopy
This commit is contained in:
parent
83d98dae19
commit
826a0eb5e3
1 changed files with 7 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ Zotero.Translate.Sandbox = {
|
|||
// Allow progress meter to update
|
||||
//
|
||||
// This can probably be re-enabled for web translators once badly asynced ones are fixed
|
||||
if(!translate.noWait && (translate instanceof Zotero.Translate.Import || translate instanceof Zotero.Translate.Export)) {
|
||||
if(!translate.noWait && translate instanceof Zotero.Translate.Import) {
|
||||
Zotero.wait();
|
||||
}
|
||||
|
||||
|
|
@ -417,6 +417,12 @@ Zotero.Translate.Sandbox = {
|
|||
}
|
||||
|
||||
translate._runHandler("itemDone", item);
|
||||
|
||||
// Update progress bar
|
||||
if(!translate.noWait) {
|
||||
Zotero.wait();
|
||||
}
|
||||
|
||||
return item;
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue