diff options
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java index a0a5e71a..dfdbba03 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java @@ -293,7 +293,7 @@ public class GuiItemRecipe extends GuiScreen { NotEnoughUpdates.INSTANCE.openGui = RecipeHistory.getNext(); } - ArrowPagesUtils.onPageSwitchMouse( + if (ArrowPagesUtils.onPageSwitchMouse( guiLeft, guiTop, topLeft, @@ -301,7 +301,22 @@ public class GuiItemRecipe extends GuiScreen { getCurrentRecipeList().size(), pageChange -> changeRecipe(currentTab, pageChange) - ); + )) return; + + for (int i = 0; i < tabs.size(); i++) { + if (isWithinRect( + mouseX - guiLeft, + mouseY - guiTop, + TAB_POS_X, + TAB_POS_Y + TAB_OFFSET_Y * i, + TAB_SIZE_X, + TAB_SIZE_Y + )) { + changeRecipe(i, currentIndex); + Utils.playPressSound(); + return; + } + } for (RecipeSlot slot : getAllRenderedSlots()) { if (isWithinRect(mouseX, mouseY, slot.getX(this), slot.getY(this), SLOT_SIZE, SLOT_SIZE)) { |