Extruder nr is now sent as string

CURA-2071
This commit is contained in:
Jaime van Kessel 2016-08-09 17:09:48 +02:00
parent 87a0543d0c
commit c381b82ac1

View file

@ -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 {