Skip to content

Commit d0184c8

Browse files
authored
Fix Ghost Circuit Scrolling Twice (#2696)
1 parent 2a696cf commit d0184c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gregtech/api/mui/widget/GhostCircuitSlotWidget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public boolean onMouseScroll(ModularScreen.UpOrDown scrollDirection, int amount)
5555
if (isSelectorPanelOpen()) return true;
5656
MouseData mouseData = MouseData.create(scrollDirection.modifier);
5757
getSyncHandler().syncToServer(3, mouseData::writeToPacket);
58-
return false;
58+
return true;
5959
}
6060

6161
@Override

0 commit comments

Comments
 (0)