From 5fd68fddc0ccf302c6e408294b87a690419f2ead Mon Sep 17 00:00:00 2001 From: Konstantin Kireyev Date: Tue, 9 Jul 2024 03:42:15 +0500 Subject: [PATCH] fix bug 68900 fedora triggers focusout on click, thereby closing the submenu --- apps/common/main/lib/component/MenuItem.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/common/main/lib/component/MenuItem.js b/apps/common/main/lib/component/MenuItem.js index 6a9a71f539..693cd95d49 100644 --- a/apps/common/main/lib/component/MenuItem.js +++ b/apps/common/main/lib/component/MenuItem.js @@ -340,6 +340,7 @@ define([ if (this.menu) { if (e.target.id == this.id) { + this._doHover(e); return false; }