mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Do not show the layer height in the header panel when the profile is not supported
This commit is contained in:
parent
e74258c26b
commit
15f81da95b
2 changed files with 17 additions and 1 deletions
|
@ -1536,6 +1536,10 @@ class MachineManager(QObject):
|
|||
name = self._current_quality_group.name
|
||||
return name
|
||||
|
||||
@pyqtProperty(bool, notify = activeQualityGroupChanged)
|
||||
def hasNotSupportedQuality(self) -> bool:
|
||||
return self._current_quality_group is None and self._current_quality_changes_group is None
|
||||
|
||||
def _updateUponMaterialMetadataChange(self) -> None:
|
||||
if self._global_container_stack is None:
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue