mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Properly send global settings to the global stack
Contributes to CURA-2006
This commit is contained in:
parent
7613274686
commit
9d0acf5b03
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ ScrollView
|
||||||
{
|
{
|
||||||
target: provider
|
target: provider
|
||||||
property: "containerStackId"
|
property: "containerStackId"
|
||||||
when: model.settable_per_extruder || (inheritStackProvider.properties.global_inherits_stack == -1 || inheritStackProvider.properties.global_inherits_stack == null)
|
when: model.settable_per_extruder || (inheritStackProvider.properties.global_inherits_stack != -1 && inheritStackProvider.properties.global_inherits_stack != null)
|
||||||
value:
|
value:
|
||||||
{
|
{
|
||||||
if(inheritStackProvider.properties.global_inherits_stack == -1 || inheritStackProvider.properties.global_inherits_stack == null)
|
if(inheritStackProvider.properties.global_inherits_stack == -1 || inheritStackProvider.properties.global_inherits_stack == null)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue