diff --git a/changelog.md b/changelog.md index b530f525..d8407549 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,8 @@ ## v6.3.0 * Add Next Free Offset for Group IDs + * Fix being able to click on the layer number to lock it + * Fix crash when selecting colors using the new color selector ## v6.2.1 diff --git a/src/features/about/AboutBEPopup.cpp b/src/features/about/AboutBEPopup.cpp index 9dce6c08..a8e9b257 100644 --- a/src/features/about/AboutBEPopup.cpp +++ b/src/features/about/AboutBEPopup.cpp @@ -10,7 +10,7 @@ struct Dev { CCNode* create(AboutBEPopup* popup, bool big) const { auto node = CCNode::create(); - node->setContentSize({ 100.f, 50.f }); + node->setContentSize({ links.size() * 25.f + 25, 50 }); node->setAnchorPoint({ .5f, .5f }); auto label = CCLabelBMFont::create(name, "bigFont.fnt");