mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Renamed packageContainerIds to getPackageContainerIds. CURA-5389
This commit is contained in:
parent
aa0c7d5f0a
commit
513bd4f84a
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class CuraPackageManager(PackageManager):
|
||||||
# It loops through all the package contents and see if some of the ids are used.
|
# It loops through all the package contents and see if some of the ids are used.
|
||||||
# The list consists of 3-tuples: (global_stack, extruder_nr, container_id)
|
# The list consists of 3-tuples: (global_stack, extruder_nr, container_id)
|
||||||
def packageUsed(self, package_id: str):
|
def packageUsed(self, package_id: str):
|
||||||
ids = self.packageContainerIds(package_id)
|
ids = self.getPackageContainerIds(package_id)
|
||||||
container_stacks = ContainerRegistry.getInstance().findContainerStacks()
|
container_stacks = ContainerRegistry.getInstance().findContainerStacks()
|
||||||
global_stacks = [container_stack for container_stack in container_stacks if isinstance(container_stack, GlobalStack)]
|
global_stacks = [container_stack for container_stack in container_stacks if isinstance(container_stack, GlobalStack)]
|
||||||
machine_with_materials = []
|
machine_with_materials = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue