fix geode layer enter crash

This commit is contained in:
Cvolton 2024-06-19 23:51:57 +02:00
parent c3d48dd3dc
commit 79689cdbc4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions
loader/src/ui/mods/list

View file

@ -460,7 +460,7 @@ void ModList::onCheckUpdates(typename server::ServerRequest<std::vector<std::str
}
// Recreate the button with the updated label.
m_updateAllMenu->removeChild(m_updateAllBtn, false);
m_updateAllMenu->removeChild(m_updateAllBtn, true);
m_updateAllBtn = CCMenuItemSpriteExtra::create(
m_updateAllSpr, this, menu_selector(ModList::onUpdateAll)
);

View file

@ -37,7 +37,7 @@ protected:
CCNode* m_searchMenu;
CCNode* m_updateAllContainer = nullptr;
CCMenu* m_updateAllMenu = nullptr;
IconButtonSprite* m_updateAllSpr = nullptr;
Ref<IconButtonSprite> m_updateAllSpr = nullptr;
CCMenuItemSpriteExtra* m_updateAllBtn = nullptr;
CCNode* m_updateAllLoadingCircle = nullptr;
IconButtonSprite* m_showUpdatesSpr = nullptr;