From d0184c80d7541129cf84ee7ae878ef8638a84450 Mon Sep 17 00:00:00 2001 From: Ghzdude <44148655+ghzdude@users.noreply.github.com> Date: Wed, 8 Jan 2025 19:58:59 -0700 Subject: [PATCH] Fix Ghost Circuit Scrolling Twice (#2696) --- .../java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java b/src/main/java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java index aa692fd8583..991f65e7d05 100644 --- a/src/main/java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java +++ b/src/main/java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java @@ -55,7 +55,7 @@ public boolean onMouseScroll(ModularScreen.UpOrDown scrollDirection, int amount) if (isSelectorPanelOpen()) return true; MouseData mouseData = MouseData.create(scrollDirection.modifier); getSyncHandler().syncToServer(3, mouseData::writeToPacket); - return false; + return true; } @Override