mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 04:54:04 -06:00
Only take the active machine if not settable per extruder
Settable per mesh should only have an effect on the per-object settings. This was misguided of me earlier. Contributes to issue CURA-2006.
This commit is contained in:
parent
9581257df5
commit
8fd3047380
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ ScrollView
|
|||
when: model.settable_per_extruder || (inheritStackProvider.properties.global_inherits_stack != null && inheritStackProvider.properties.global_inherits_stack >= 0);
|
||||
value:
|
||||
{
|
||||
if(!model.settable_per_extruder && !model.settable_per_mesh)
|
||||
if(!model.settable_per_extruder)
|
||||
{
|
||||
//Not settable per extruder, so we must pick global.
|
||||
return Cura.MachineManager.activeMachineId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue