From d34ff23292f4b2ea3b827ec466b8a41107901128 Mon Sep 17 00:00:00 2001 From: GabsPuNs Date: Thu, 18 Jun 2026 22:41:49 -0400 Subject: [PATCH] Add Menu Background and Logo component to Pause Menu. --- Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp b/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp index d365dba7..38d9415f 100644 --- a/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp @@ -52,7 +52,9 @@ UIScene_PauseMenu::UIScene_PauseMenu(int iPad, void *initData, UILayer *parentLa ui.HidePressStart(); - // parentLayer->addComponent(iPad,eUIComponent_Logo); + m_parentLayer->showComponent(m_iPad, eUIComponent_Panorama, false); + m_parentLayer->showComponent(m_iPad, eUIComponent_MenuBackground, true); + m_parentLayer->showComponent(m_iPad, eUIComponent_Logo, true); if (g_NetworkManager.IsLocalGame() && g_NetworkManager.GetPlayerCount() == 1) app.SetXuiServerAction(ProfileManager.GetPrimaryPad(), eXuiServerAction_PauseServer, (void*)TRUE);