From 4d7b03d86e24e24952f55da9f2f7ccfa7a624a6e Mon Sep 17 00:00:00 2001 From: Roman / Linnea Gräf Date: Mon, 31 Oct 2022 11:22:06 +0100 Subject: Make recipe tabs work again (#407) why do people always break my code :sob: --- .../notenoughupdates/miscgui/GuiItemRecipe.java | 19 +++++++++++++++++-- 1 file 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 57732583..cc9f36fa 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java @@ -295,7 +295,7 @@ public class GuiItemRecipe extends GuiScreen { NotEnoughUpdates.INSTANCE.openGui = RecipeHistory.getNext(); } - ArrowPagesUtils.onPageSwitchMouse( + if (ArrowPagesUtils.onPageSwitchMouse( guiLeft, guiTop, topLeft, @@ -303,7 +303,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)) { -- cgit