mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Add a smidgen of documentation to the previous commit
CURA-2173
This commit is contained in:
parent
3ca7e2bb8d
commit
5119a7b6be
1 changed files with 2 additions and 0 deletions
|
@ -241,6 +241,8 @@ class MachineManager(QObject):
|
|||
def _onPropertyChanged(self, key, property_name):
|
||||
# HACK CURA-2173
|
||||
if property_name == "value":
|
||||
# If a setting is not settable per extruder but at the same time settable per mesh, the engine needs a value in the extruder stack
|
||||
# This is mainly the case for the "support_enable" setting.
|
||||
if self._active_container_stack.getProperty(key, "settable_per_mesh") and not self._active_container_stack.getProperty(key, "settable_per_extruder"):
|
||||
if self._active_container_stack and self._global_container_stack.getProperty("machine_extruder_count", "value") > 1:
|
||||
new_value = self._global_container_stack.getProperty(key, "value")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue