mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Remove a recently installed and then uninstalled package from the manage list
Contributes to CURA-8587
This commit is contained in:
parent
62c6af1ef3
commit
8abeb24ccc
3 changed files with 11 additions and 2 deletions
|
@ -118,7 +118,7 @@ class RemotePackageList(PackageList):
|
|||
|
||||
for package_data in response_data["data"]:
|
||||
package_id = package_data["package_id"]
|
||||
if package_id in self._local_packages:
|
||||
if package_id in self._package_manager.local_packages_ids:
|
||||
continue # We should only show packages which are not already installed
|
||||
try:
|
||||
package = PackageModel(package_data, parent = self)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue