EMI

EMI

14M Downloads

[Feature Request] Add a config option for the hardcoded Ctrl+Y "Show All Recipes" key

object-Object opened this issue ยท 0 comments

commented

Apparently, EMI has a hardcoded keybind to show all recipes while in a GUI:

if (EmiInput.isControlDown() && keyCode == GLFW.GLFW_KEY_Y) {
EmiApi.displayAllRecipes();
return true;
} else {

I ran across this while adding keybinds for a "text editor" GUI. I was planning to map Redo to Ctrl+Y, but EMI's hardcoded showAllRecipes key prevents my keyPressed method from getting a chance to handle it. It would be nice if this could be configured along with the rest of the keybinds in EMI.