From 752b21bdae78ae6bdcf867721c18f4c69ebc2146 Mon Sep 17 00:00:00 2001 From: Gijs Kruitbosch Date: Mon, 15 Jul 2013 18:39:46 +0200 Subject: [PATCH] Bug 886317 - Use top-level panels for temporary panels to fix history/feed/... widget bugs in fullscreen, r=mconley --- browser/components/customizableui/content/panelUI.js | 1 + 1 file changed, 1 insertion(+) diff --git a/browser/components/customizableui/content/panelUI.js b/browser/components/customizableui/content/panelUI.js index 7d221b2d952..d555a0c039e 100644 --- a/browser/components/customizableui/content/panelUI.js +++ b/browser/components/customizableui/content/panelUI.js @@ -180,6 +180,7 @@ const PanelUI = { let tempPanel = document.createElement("panel"); tempPanel.setAttribute("type", "arrow"); tempPanel.setAttribute("id", "customizationui-widget-panel"); + tempPanel.setAttribute("level", "top"); document.getElementById(CustomizableUI.AREA_NAVBAR).appendChild(tempPanel); let multiView = document.createElement("panelmultiview");