We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3442f63 commit 46c6b99Copy full SHA for 46c6b99
src/main/java/net/wurstclient/hacks/itemhandler/ItemHandlerHud.java
@@ -194,8 +194,11 @@ class MergeEntry
194
Window window = MC.getWindow();
195
boolean leftDown = GLFW.glfwGetMouseButton(window.handle(),
196
GLFW.GLFW_MOUSE_BUTTON_LEFT) == GLFW.GLFW_PRESS;
197
- if(overList && leftDown && !lastLeftDown)
198
- hack.openScreen();
+ // Do not open the ItemHandler GUI from the popup via mouse clicks.
+ // This avoids the popup behind other full-screen GUIs triggering
199
+ // the ItemHandler screen when clicking in overlapping areas.
200
+ // (Opening the ItemHandler GUI is available via the dedicated
201
+ // settings button or a keybind/command.)
202
lastLeftDown = leftDown;
203
}
204
0 commit comments