diff --git a/chrome/content/zotero/preferences/preferences_cite.jsx b/chrome/content/zotero/preferences/preferences_cite.jsx index c339f2924e..8281421b8e 100644 --- a/chrome/content/zotero/preferences/preferences_cite.jsx +++ b/chrome/content/zotero/preferences/preferences_cite.jsx @@ -42,13 +42,14 @@ Zotero_Preferences.Cite = { init: async function () { // Init word plugin sections - let wordPlugins = ['libreOffice']; + let wordPlugins = []; if (Zotero.isWin) { wordPlugins.push('winWord'); } else if (Zotero.isMac) { wordPlugins.push('macWord'); } + wordPlugins.push('libreOffice'); await Zotero.Promise.delay(); for (let wordPlugin of wordPlugins) { // This is the weirdest indirect code, but let's not fix what's not broken