修正排序错误的问题
This commit is contained in:
@@ -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("第三方框架")
|
||||||
|
|||||||
Reference in New Issue
Block a user