Skip to content

Commit

Permalink
Fix #1897 Fix hotkeys activating when typing into search box and hove…
Browse files Browse the repository at this point in the history
…ring over an ingredient
  • Loading branch information
mezz committed Aug 24, 2020
1 parent 7503c65 commit 9b75241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mezz/jei/input/InputHandler.java
Expand Up @@ -258,7 +258,7 @@ private boolean handleKeyEvent(int keyCode, int scanCode, int modifiers) {
return true;
}

if (!isContainerTextFieldFocused()) {
if (!isContainerTextFieldFocused() && !ingredientListOverlay.hasKeyboardFocus()) {
if (handleFocusKeybinds(input)) {
return true;
}
Expand Down

0 comments on commit 9b75241

Please sign in to comment.