From 3d89677b60144295e41f9a48fd8b55621ee0f748 Mon Sep 17 00:00:00 2001 From: matcool <26722564+matcool@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:40:54 -0300 Subject: [PATCH] uncomment this from Notification --- loader/src/ui/nodes/Notification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/src/ui/nodes/Notification.cpp b/loader/src/ui/nodes/Notification.cpp index 13e033d5..449ddde2 100644 --- a/loader/src/ui/nodes/Notification.cpp +++ b/loader/src/ui/nodes/Notification.cpp @@ -172,7 +172,7 @@ void Notification::show() { if (!this->getParent()) { auto winSize = CCDirector::get()->getWinSize(); this->setPosition(winSize.width / 2, winSize.height / 4); - // this->setZOrder(CCScene::get()->getHighestChildZ() + 100); + this->setZOrder(CCScene::get()->getHighestChildZ() + 100); } SceneManager::get()->keepAcrossScenes(this); m_showing = true;