File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/cleanroommc/modularui/screen Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public static void onGuiInit(GuiScreenEvent.InitGuiEvent.Post event) {
9898 OverlayStack .foreach (ms -> ms .onResize (event .getGui ().width , event .getGui ().height ), false );
9999 }
100100
101- @ SubscribeEvent (priority = EventPriority .LOW )
101+ @ SubscribeEvent (priority = EventPriority .HIGH )
102102 public static void onGuiInputLow (GuiScreenEvent .KeyboardInputEvent .Pre event ) throws IOException {
103103 defaultContext .updateEventState ();
104104 if (checkGui (event .getGui ())) currentScreen .getContext ().updateEventState ();
@@ -107,7 +107,7 @@ public static void onGuiInputLow(GuiScreenEvent.KeyboardInputEvent.Pre event) th
107107 }
108108 }
109109
110- @ SubscribeEvent (priority = EventPriority .LOW )
110+ @ SubscribeEvent (priority = EventPriority .HIGH )
111111 public static void onGuiInputLow (GuiScreenEvent .MouseInputEvent .Pre event ) throws IOException {
112112 defaultContext .updateEventState ();
113113 if (checkGui (event .getGui ())) currentScreen .getContext ().updateEventState ();
You can’t perform that action at this time.
0 commit comments