mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 08:58:58 +08:00
Fix copy paste error
Simple fix that caused crash for getHasVariantBuildplates
This commit is contained in:
parent
ba37812793
commit
c2a00d6b53
@ -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…
x
Reference in New Issue
Block a user