mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix geode layer enter crash
This commit is contained in:
parent
c3d48dd3dc
commit
79689cdbc4
2 changed files with 2 additions and 2 deletions
loader/src/ui/mods/list
|
@ -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)
|
||||
);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue