Skip to content

Commit 1dc990d

Browse files
committed
Fix: Rotate Menu Keybind not supporting mouse buttons
1 parent 41b6028 commit 1dc990d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/simibubi/create/foundation/events/InputEvents.java

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public static void onMouseInput(InputEvent.MouseButton.Pre event) {
5959
int button = event.getButton();
6060
boolean pressed = !(event.getAction() == 0);
6161

62+
RadialWrenchHandler.onKeyInput(button, pressed);
6263
if (CreateClient.SCHEMATIC_HANDLER.onMouseInput(button, pressed))
6364
event.setCanceled(true);
6465
else if (CreateClient.SCHEMATIC_AND_QUILL_HANDLER.onMouseInput(button, pressed))

0 commit comments

Comments
 (0)