diff --git a/CHANGELOG.md b/CHANGELOG.md index a34c9508b..59c5e3b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ * Allow any float or int type in `getSettingValue` (d08e141) * Fix cocos headers (9dd7128, 6c039c6) * Fix target Geode version comparison with tags (ec2e8d8) + * Fix "GD 0.000" from being displayed in mod listing (fb85530) + * Id overload for `openInfoPopup` now fetches the latest mod version (c6666a3, bda9444) ## v4.1.0 * Add Modtober winner announcement (0aa2449) diff --git a/loader/src/ui/mods/list/ModProblemItem.cpp b/loader/src/ui/mods/list/ModProblemItem.cpp index bcf867c0a..ec144268d 100644 --- a/loader/src/ui/mods/list/ModProblemItem.cpp +++ b/loader/src/ui/mods/list/ModProblemItem.cpp @@ -125,6 +125,7 @@ CCSprite* ModProblemItem::createSeverityIcon() { } void ModProblemItem::onInfo(CCObject*) { + // someone should really add that fix button. not me though if (m_problem.type == LoadProblem::Type::MissingDependency) { (void)openInfoPopup(m_problem.message); return;