mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 19:31:16 -07:00
Resolve is now updated from the base property
The resolve doesn't update always update well for single extrusion machines, so the wrong value gets used. There is however, no need for a resolve with a single extrusion machine, so we can disable the resolve for those alltogether. CURA-2939
This commit is contained in:
parent
6dc194d8de
commit
9057174691
4 changed files with 8 additions and 7 deletions
|
|
@ -27,7 +27,8 @@ Item {
|
|||
|
||||
// Create properties to put property provider stuff in (bindings break in qt 5.5.1 otherwise)
|
||||
property var state: propertyProvider.properties.state
|
||||
property var resolve: propertyProvider.properties.resolve
|
||||
// There is no resolve property if there is only one stack.
|
||||
property var resolve: Cura.MachineManager.activeStackId != Cura.MachineManager.activeMachineId ? propertyProvider.properties.resolve : "None"
|
||||
property var stackLevels: propertyProvider.stackLevels
|
||||
property var stackLevel: stackLevels[0]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue