Skip to content

Commit 5796bc6

Browse files
committed
Fix SSL popup
A long chain of getters with lazy initialization failed because the popup was hidden.
1 parent 0e60796 commit 5796bc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/content/statusline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,11 @@ const StatusLine = Module("statusline", {
312312
if (typeof handler === "undefiend") // Thunderbird has none
313313
return;
314314

315+
handler._identityPopup.hidden = false;
315316
if (handler.refreshIdentityPopup)
316317
handler.refreshIdentityPopup();
317318
else
318319
handler.setPopupMessages(handler._identityBox.className);
319-
handler._identityPopup.hidden = false;
320320
handler._identityPopup.openPopup(anchor);
321321
},
322322
});

0 commit comments

Comments
 (0)