mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
Merge branch 'master' of https://github.com/Ultimaker/Cura
This commit is contained in:
commit
45b753082f
2 changed files with 9 additions and 1 deletions
|
@ -260,6 +260,14 @@ Item {
|
||||||
storeIndex: 0
|
storeIndex: 0
|
||||||
removeUnusedValue: false
|
removeUnusedValue: false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If the extruder by which the object needs to be printed is changed, ensure that the
|
||||||
|
// display is also notified of the fact.
|
||||||
|
Connections
|
||||||
|
{
|
||||||
|
target: extruderSelector
|
||||||
|
onActivated: provider.forcePropertiesChanged()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,7 +114,7 @@ SettingItem
|
||||||
// 3: material -> user changed material in materialspage
|
// 3: material -> user changed material in materialspage
|
||||||
// 4: variant
|
// 4: variant
|
||||||
// 5: machine
|
// 5: machine
|
||||||
if ((propertyProvider.properties.resolve != "None") && (stackLevel != 0) && (stackLevel != 1)) {
|
if ((propertyProvider.properties.resolve != "None" && propertyProvider.properties.resolve) && (stackLevel != 0) && (stackLevel != 1)) {
|
||||||
// We have a resolve function. Indicates that the setting is not settable per extruder and that
|
// We have a resolve function. Indicates that the setting is not settable per extruder and that
|
||||||
// we have to choose between the resolved value (default) and the global value
|
// we have to choose between the resolved value (default) and the global value
|
||||||
// (if user has explicitly set this).
|
// (if user has explicitly set this).
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue