We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ff74b commit e79afc8Copy full SHA for e79afc8
src/browser/base/zen-components/ZenCompactMode.mjs
@@ -394,9 +394,10 @@ var gZenCompactModeManager = {
394
395
// When moving the cursor between the url bar and bookmarks, or in-between bookmarks in the bookmark bar, the
396
// mouseLeave event is triggered without a relatedTarget.
397
- if (event.relatedTarget == null) {
398
- return;
399
- }
+ // TODO: Experiment with this for some time, see if people still have issues with the hover state
+ //if (event.relatedTarget == null) {
+ // return;
400
+ //}
401
402
// If it's a child element but not the target, ignore the event
403
if (target.contains(event.explicitOriginalTarget) && event.explicitOriginalTarget !== target) {
0 commit comments