mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Fix getting limit to extruder property
Apparently it didn't even reach this code up until now. Well, now it does. Contributes to issue CURA-3291.
This commit is contained in:
parent
039015e3df
commit
ed2b09c975
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ class MachineManager(QObject):
|
|||
# fast update, we only have to look at the current changed property
|
||||
if self._active_container_stack.getProperty(key, "settable_per_extruder"):
|
||||
if self._active_container_stack.hasProperty(key, "limit_to_extruder"): #We have to look this value up from a different extruder.
|
||||
extruder_index = self._active_container_stack.getProperty("limit_to_extruder")
|
||||
extruder_index = self._active_container_stack.getProperty(key, "limit_to_extruder")
|
||||
extruder_manager = ExtruderManager.getInstance()
|
||||
stack = extruder_manager.getExtruderStack(extruder_index)
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue