mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Fix copy paste error
Simple fix that caused crash for getHasVariantBuildplates
This commit is contained in:
parent
ba37812793
commit
c2a00d6b53
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ class GlobalStack(CuraContainerStack):
|
|||
return parseBool(self.getMetaDataEntry("has_variants", False))
|
||||
|
||||
def getHasVariantsBuildPlates(self) -> bool:
|
||||
return parseBool(self._global_container_stack.getMetaDataEntry("has_variant_buildplates", False))
|
||||
return parseBool(self.getMetaDataEntry("has_variant_buildplates", False))
|
||||
|
||||
def getHasMachineQuality(self) -> bool:
|
||||
return parseBool(self.getMetaDataEntry("has_machine_quality", False))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue