mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix EditLevelLayer not properly handling the id and layout of desc btn
This commit is contained in:
parent
9fb5051f80
commit
21ee6894cf
1 changed files with 20 additions and 0 deletions
|
@ -31,9 +31,29 @@ $register_ids(EditLevelLayer) {
|
|||
);
|
||||
|
||||
auto winSize = CCDirector::get()->getWinSize();
|
||||
auto descBG = this->getChildByID("description-background");
|
||||
|
||||
auto descMenu = CCMenu::create();
|
||||
descMenu->setID("description-menu");
|
||||
descMenu->setLayout(ColumnLayout::create());
|
||||
descMenu->setPosition(
|
||||
descBG->getPositionX() - descBG->getScaledContentSize().width / 2 - 35.f,
|
||||
descBG->getPositionY()
|
||||
);
|
||||
descMenu->setContentSize({ 40.f, 80.f });
|
||||
this->addChild(descMenu);
|
||||
|
||||
if (auto menu = this->getChildByID("level-edit-menu")) {
|
||||
setIDs(menu, 0, "edit-button", "play-button", "share-button");
|
||||
if (menu->getChildrenCount() == 4) {
|
||||
auto btn = static_cast<CCNode*>(menu->getChildren()->objectAtIndex(3));
|
||||
btn->setID("update-desc-button");
|
||||
btn->retain();
|
||||
btn->removeFromParent();
|
||||
descMenu->addChild(btn);
|
||||
btn->release();
|
||||
descMenu->updateLayout();
|
||||
}
|
||||
menu->setContentSize({ winSize.width - 160.f, 100.f });
|
||||
menu->setLayout(RowLayout::create()->setGap(25.f));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue