diff --git a/src/main/java/mezz/jei/gui/RecipesGui.java b/src/main/java/mezz/jei/gui/RecipesGui.java index 16caa1fc5..68a59e68e 100644 --- a/src/main/java/mezz/jei/gui/RecipesGui.java +++ b/src/main/java/mezz/jei/gui/RecipesGui.java @@ -103,7 +103,7 @@ public void initGui() { this.backgroundTexture = recipeBackgroundResource; } - this.recipeCategoryCraftItemBox = Internal.getHelpers().getGuiHelper().createDrawable(recipeBackgroundResource, 215, 0, 28, 24); + this.recipeCategoryCraftItemBox = Internal.getHelpers().getGuiHelper().createDrawable(recipeBackgroundResource, 215, 0, 28, 25); this.guiLeft = (width - this.xSize) / 2; this.guiTop = (height - this.ySize) / 2; @@ -212,7 +212,7 @@ private Rectangle getRecipeCraftingItemArea() { return null; } int x = guiLeft + ((xSize - recipeCategoryCraftItemBox.getWidth()) / 2); - int y = guiTop - recipeCategoryCraftItemBox.getHeight(); + int y = guiTop - recipeCategoryCraftItemBox.getHeight() + 3; return new Rectangle(x, y, recipeCategoryCraftItemBox.getWidth(), recipeCategoryCraftItemBox.getHeight()); } diff --git a/src/main/resources/assets/jei/textures/gui/recipeBackground.png b/src/main/resources/assets/jei/textures/gui/recipeBackground.png index b40cff220..a3c7508ae 100644 Binary files a/src/main/resources/assets/jei/textures/gui/recipeBackground.png and b/src/main/resources/assets/jei/textures/gui/recipeBackground.png differ