mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-27 04:41:06 -07:00
Extruder nr is now sent as string
CURA-2071
This commit is contained in:
parent
87a0543d0c
commit
c381b82ac1
1 changed files with 2 additions and 1 deletions
|
|
@ -327,7 +327,8 @@ Item
|
|||
supportEnabled.setPropertyValue("value", false);
|
||||
} else {
|
||||
supportEnabled.setPropertyValue("value", true);
|
||||
supportExtruderNr.setPropertyValue("value", index - 1);
|
||||
// Send the extruder nr as a string.
|
||||
supportExtruderNr.setPropertyValue("value", parseInt(index - 1) + "");
|
||||
}
|
||||
}
|
||||
MouseArea {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue