From c9881bc022cc1fadb43bde27c72740c34a1f28fc Mon Sep 17 00:00:00 2001 From: EnderDev Date: Sat, 16 Dec 2023 18:15:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20issue=20where=20panel=20wa?= =?UTF-8?q?sn't=20cancelled=20forcefully=20when=20command=20triggered=20in?= =?UTF-8?q?side?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/panels/content/browser-panel-button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/panels/content/browser-panel-button.js b/components/panels/content/browser-panel-button.js index ae2b9ec51e..902523c1ce 100644 --- a/components/panels/content/browser-panel-button.js +++ b/components/panels/content/browser-panel-button.js @@ -14,7 +14,7 @@ class BrowserPanelButton extends BrowserCommandButton { _onPanelButtonCommand(event) { const panelArea = /** @type {BrowserPanelArea} */ (this.host); - panelArea.panel.hidePopup(true); + panelArea.panel.hidePopup(true, true); } connectedCallback() {