From d89a7a14acee5edf9d0458d2e7750b2c6da8abd6 Mon Sep 17 00:00:00 2001 From: Jonathan Kamens Date: Sat, 12 Jul 2025 14:44:51 -0400 Subject: [PATCH] Don't try to resize popup attached to compose window button I don't know if this ever worked, but at least in the current version of Thunderbird, when we try to resize the popup attached to the compose window what we end up resizing is the compose window itself. Don't do that. --- ui/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/popup.js b/ui/popup.js index 5f90b45e..1a27a2d2 100644 --- a/ui/popup.js +++ b/ui/popup.js @@ -1178,7 +1178,7 @@ const SLPopup = { SLPopup.restoreZoom(); SLPopup.initialized = true; - SLTools.makeContentsVisible(); + if (!SLPopup.attachedWindow) SLTools.makeContentsVisible(); SLTools.debug("Initialized popup window"); }, };