mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
Document filtering nozzles by extruder better
Contributes to issues CURA-1278 and CURA-351.
This commit is contained in:
parent
91fc90a423
commit
0e108f0c04
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class Extruder:
|
|||
container_registry = UM.Settings.ContainerRegistry.getInstance()
|
||||
|
||||
#Find the nozzles that fit on this extruder.
|
||||
self._nozzles = container_registry.findInstanceContainers(type = "nozzle", definitions = "*," + definition.getId() + ",*")
|
||||
self._nozzles = container_registry.findInstanceContainers(type = "nozzle", definitions = "*," + definition.getId() + ",*") #Extruder needs to be delimited by either a comma or the end of string.
|
||||
self._nozzles += container_registry.findInstanceContainers(type = "nozzle", definitions = "*," + definition.getId())
|
||||
self._nozzles += container_registry.findInstanceContainers(type = "nozzle", definitions = definition.getId() + ",*")
|
||||
self._nozzles += container_registry.findInstanceContainers(type = "nozzle", definitions = definition.getId())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue