Skip to content

Commit 9b27c24

Browse files
committed
fix: menu item cannot move with arrow key.
1 parent 6a56e5a commit 9b27c24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/content/events.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ const Events = Module("events", {
10671067

10681068
// this is need for sites like msn.com which focus the input field on keydown
10691069
onKeyUpOrDown: function (event) {
1070-
if (modes.passNextKey || modes.passAllKeys || Events.isInputElemFocused())
1070+
if (modes.passNextKey || modes.passAllKeys || modes.isMenuShown || Events.isInputElemFocused())
10711071
return;
10721072
event.stopPropagation();
10731073
},

0 commit comments

Comments
 (0)