mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Make the UM3 work properly
This commit is contained in:
parent
0a0353da82
commit
0467a8688a
3 changed files with 29 additions and 25 deletions
|
@ -60,6 +60,12 @@ class ExtruderStack(CuraContainerStack):
|
|||
|
||||
return super().getProperty(key, property_name)
|
||||
|
||||
@override(CuraContainerStack)
|
||||
def _getMachineDefinition(self) -> ContainerInterface:
|
||||
if not self.getNextStack():
|
||||
raise Exceptions.NoGlobalStackError("Extruder {id} is missing the next stack!".format(id = self.id))
|
||||
|
||||
return self.getNextStack()._getMachineDefinition()
|
||||
|
||||
extruder_stack_mime = MimeType(
|
||||
name = "application/x-cura-extruderstack",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue