diff options
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java | 3 |
1 files changed, 1 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 6dc64ab6..dcc6c629 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java @@ -342,8 +342,7 @@ public class GuiItemRecipe extends GuiScreen { // Allow Paging with Scroll-Wheel // Block scrolling while Tooltip is displayed - if (NotEnoughUpdates.INSTANCE.config.tooltipTweaks.scrollableTooltips && - TooltipTextScrolling.didRenderTooltip) return; + if (TooltipTextScrolling.didRenderTooltip) return; if (Mouse.getEventDWheel() != 0) { ArrowPagesUtils.onPageSwitchScroll(currentIndex, getCurrentRecipeList().size(), pageChange -> changeRecipe(currentTab, pageChange)); |