From 5b059ea8ed18b25ceafa1a464bf252e41f7f37a2 Mon Sep 17 00:00:00 2001 From: HJfod <60038575+HJfod@users.noreply.github.com> Date: Sat, 17 Feb 2024 20:01:59 +0200 Subject: [PATCH] update changelog + better spacing in about popup --- changelog.md | 2 ++ src/features/about/AboutBEPopup.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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");