|
@@ -738,22 +738,6 @@ class MachineManager(QObject):
|
|
|
|
|
|
return result
|
|
|
|
|
|
- ## Property to indicate if a machine has "specialized" material profiles.
|
|
|
- # Some machines have their own material profiles that "override" the default catch all profiles.
|
|
|
- @pyqtProperty(bool, notify = globalContainerChanged)
|
|
|
- def filterMaterialsByMachine(self) -> bool:
|
|
|
- if self._global_container_stack:
|
|
|
- return Util.parseBool(self._global_container_stack.getMetaDataEntry("has_machine_materials", False))
|
|
|
- return False
|
|
|
-
|
|
|
- ## Property to indicate if a machine has "specialized" quality profiles.
|
|
|
- # Some machines have their own quality profiles that "override" the default catch all profiles.
|
|
|
- @pyqtProperty(bool, notify = globalContainerChanged)
|
|
|
- def filterQualityByMachine(self) -> bool:
|
|
|
- if self._global_container_stack:
|
|
|
- return Util.parseBool(self._global_container_stack.getMetaDataEntry("has_machine_quality", False))
|
|
|
- return False
|
|
|
-
|
|
|
## Get the Definition ID of a machine (specified by ID)
|
|
|
# \param machine_id string machine id to get the definition ID of
|
|
|
# \returns DefinitionID (string) if found, None otherwise
|