commit 9c82a7a661810a5408997aa7d87ef6928944b09e
parent 5fbd569fdf8baafc9fa46669ef4015a3d46d9214
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 10 May 2013 14:51:41 -0400
Reset Quick Copy list when resetting translators, too
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/preferences/preferences_advanced.js b/chrome/content/zotero/preferences/preferences_advanced.js
@@ -152,7 +152,11 @@ Zotero_Preferences.Advanced = {
null, null, null, {});
if (index == 0) {
- Zotero.Schema.resetTranslators();
+ Zotero.Schema.resetTranslators(function () {
+ if (Zotero_Preferences.Export) {
+ Zotero_Preferences.Export.populateQuickCopyList();
+ }
+ });
}
},