修正排序错误的问题

This commit is contained in:
2025-06-29 02:34:30 +08:00
parent cd5a0f44c7
commit 62e80bfe1e

View File

@@ -113,7 +113,7 @@ class AboutMain(QWidget):
ThirdParty("packaging", "https://github.com/pypa/packaging", ":/images/3rd/packaging.png"), ThirdParty("packaging", "https://github.com/pypa/packaging", ":/images/3rd/packaging.png"),
ThirdParty("pywin32", "https://github.com/mhammond/pywin32") ThirdParty("pywin32", "https://github.com/mhammond/pywin32")
] ]
sorted(third_parties, key=lambda item: item.name) third_parties.sort(key=lambda item: item.name.lower())
self.group_card = GroupHeaderCardWidget(self) self.group_card = GroupHeaderCardWidget(self)
self.group_card.setTitle("第三方框架") self.group_card.setTitle("第三方框架")