Revert addonManager

This commit is contained in:
mosfet80
2023-03-04 22:21:50 +01:00
committed by Chris Hennes
parent 654f32dc07
commit 206931ccc1
4 changed files with 24 additions and 0 deletions

View File

@@ -615,6 +615,13 @@ class PackageListFilter(QtCore.QSortFilterProxyModel):
if data.status() != Addon.Status.UPDATE_AVAILABLE:
return False
# If it's not installed, check to see if it's Py2 only
if (
data.status() == Addon.Status.NOT_INSTALLED
and self.hide_py2
and data.python2
):
return False
# If it's not installed, check to see if it's marked obsolete
if (