mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
Clean up conversion to string
CURA-2071
This commit is contained in:
parent
8c231e2942
commit
71a9f2dd7a
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ Item
|
|||
} else {
|
||||
supportEnabled.setPropertyValue("value", true);
|
||||
// Send the extruder nr as a string.
|
||||
supportExtruderNr.setPropertyValue("value", parseInt(index - 1) + "");
|
||||
supportExtruderNr.setPropertyValue("value", String(index - 1));
|
||||
}
|
||||
}
|
||||
MouseArea {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue