From ac30f09085cacaa9e4afa201b0c9de9c5727054e Mon Sep 17 00:00:00 2001 From: Boom244 Date: Tue, 3 Mar 2026 14:43:06 -0800 Subject: [PATCH 1/2] #221: Fix menu glitch. (#254) --- Minecraft.Client/Windows64/KeyboardMouseInput.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Minecraft.Client/Windows64/KeyboardMouseInput.cpp b/Minecraft.Client/Windows64/KeyboardMouseInput.cpp index fc7633947..df57db442 100644 --- a/Minecraft.Client/Windows64/KeyboardMouseInput.cpp +++ b/Minecraft.Client/Windows64/KeyboardMouseInput.cpp @@ -103,6 +103,7 @@ void KeyboardMouseInput::OnRawMouseInput(LPARAM lParam) void KeyboardMouseInput::OnMouseButton(int button, bool down) { + if (ui.IsPauseMenuDisplayed(ProfileManager.GetPrimaryPad())) { return; } if (button >= 0 && button < 3) { if (down && !m_mouseButtons[button]) m_mousePressedAccum[button] = true; From f870ef2a1038ac6137e217aab9e3b38ed2848e51 Mon Sep 17 00:00:00 2001 From: Zekken Date: Tue, 3 Mar 2026 18:56:16 -0500 Subject: [PATCH 2/2] Fix Texture Pack images in menu (#335) --- Minecraft.Client/Common/UI/UIController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/UI/UIController.cpp b/Minecraft.Client/Common/UI/UIController.cpp index 9e4a32024..6ac2f9ba3 100644 --- a/Minecraft.Client/Common/UI/UIController.cpp +++ b/Minecraft.Client/Common/UI/UIController.cpp @@ -1445,7 +1445,7 @@ GDrawTexture * RADLINK UIController::TextureSubstitutionCreateCallback ( void * // 4J Stu - All our flash controls that allow replacing textures use a special 64x64 symbol // Force this size here so that our images don't get scaled wildly - #if (defined __ORBIS__ || defined _DURANGO ) + #if (defined __ORBIS__ || defined _DURANGO || defined _WINDOWS64 ) *width = 96; *height = 96; #else