From 6d93ab1e71325b1467e6415e886fa29faba9c0b6 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Thu, 18 Apr 2024 13:25:15 -0400 Subject: [PATCH] Zotero.openMainWindow(): Make window resizable Fixes #4007 --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index c6864831b7..5dbccbbef9 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -969,7 +969,7 @@ Services.scriptloader.loadSubScript("resource://zotero/polyfill.js"); this.openMainWindow = function () { var chromeURI = AppConstants.BROWSER_CHROME_URL; - var flags = "chrome,all,dialog=no"; + var flags = "chrome,all,dialog=no,resizable=yes"; var ww = Components.classes['@mozilla.org/embedcomp/window-watcher;1'] .getService(Components.interfaces.nsIWindowWatcher); ww.openWindow(null, chromeURI, '_blank', flags, null);