We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b27c24 commit 2fbaa66Copy full SHA for 2fbaa66
common/content/events.js
@@ -1078,7 +1078,9 @@ const Events = Module("events", {
1078
modes.isMenuShown = true;
1079
},
1080
1081
- onPopupHidden: function () {
+ onPopupHidden: function (event) {
1082
+ if (event.originalTarget.localName == "tooltip" || event.originalTarget.id == "liberator-visualbell")
1083
+ return;
1084
// gContextMenu is set to NULL, when a context menu is closed
1085
if ((window.gContextMenu == null || !window.gContextMenu.shouldDisplay) && !this._activeMenubar)
1086
modes.isMenuShown = false;
0 commit comments