Fix: Rotate Menu Keybind not supporting mouse buttons

This commit is contained in:
attack8 2025-03-02 19:45:18 -05:00
parent 41b6028c0b
commit 1dc990dfc4

View file

@ -59,6 +59,7 @@ public class InputEvents {
int button = event.getButton();
boolean pressed = !(event.getAction() == 0);
RadialWrenchHandler.onKeyInput(button, pressed);
if (CreateClient.SCHEMATIC_HANDLER.onMouseInput(button, pressed))
event.setCanceled(true);
else if (CreateClient.SCHEMATIC_AND_QUILL_HANDLER.onMouseInput(button, pressed))