From fb4f55e809bcd4270253439bbf41839d03c2c67b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 31 Jul 2023 16:51:47 -0400 Subject: [PATCH] =?UTF-8?q?Restore=20Word=20=E2=86=92=20LibreOffice=20orde?= =?UTF-8?q?r=20in=20Cite=20prefpane?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chrome/content/zotero/preferences/preferences_cite.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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