mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Perobject settings now use correct stacks to calculate values
CURA-1754
This commit is contained in:
parent
6f46ed35fc
commit
7ff1b937e3
2 changed files with 6 additions and 2 deletions
|
@ -212,7 +212,7 @@ class StartSliceJob(Job):
|
|||
def _handlePerObjectSettings(self, node, message):
|
||||
stack = node.callDecoration("getStack")
|
||||
# Check if the node has a stack attached to it and the stack has any settings in the top container.
|
||||
if stack and stack.getTop().getAllKeys():
|
||||
if stack:
|
||||
# Because we want to use inheritance correctly, we send all settings as seen from the per object stack.
|
||||
for key in stack.getAllKeys():
|
||||
setting = message.addRepeatedMessage("settings")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue