diff --git a/changelog.md b/changelog.md index 2519335..45c93ea 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ ## v0.3.4-alpha * MacOS support! (thank SpaghettDev on Github) + * Fix tab opacity on the icon when not selected ## v0.3.3-alpha * Properly fix lines to origin in curve drawing for Android diff --git a/src/hooks/EditorUI.cpp b/src/hooks/EditorUI.cpp index 0db2355..697245b 100644 --- a/src/hooks/EditorUI.cpp +++ b/src/hooks/EditorUI.cpp @@ -66,6 +66,7 @@ struct EditorUIHook : Modify { auto spriteOff = CCSprite::createWithSpriteFrameName("EditorIcon.png"_spr); spriteOff->setScale(0.2f); + spriteOff->setOpacity(150); auto offBg = CCSprite::createWithSpriteFrameName("GJ_tabOff_001.png"); offBg->addChildAtPosition(spriteOff, Anchor::Center, ccp(0, 0)); offBg->setOpacity(150);