mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Fix TypeError in JobSpec.qml due to material cost being undefined
This commit is contained in:
parent
0452cffff9
commit
ac560229a1
1 changed files with 3 additions and 2 deletions
|
@ -212,8 +212,9 @@ Item {
|
||||||
{
|
{
|
||||||
lengths.push(base.printMaterialLengths[index].toFixed(2));
|
lengths.push(base.printMaterialLengths[index].toFixed(2));
|
||||||
weights.push(String(Math.floor(base.printMaterialWeights[index])));
|
weights.push(String(Math.floor(base.printMaterialWeights[index])));
|
||||||
costs.push(base.printMaterialCosts[index].toFixed(2));
|
var cost = base.printMaterialCosts[index] == undefined ? 0 : base.printMaterialCosts[index].toFixed(2);
|
||||||
if(base.printMaterialCosts[index] > 0)
|
costs.push(cost);
|
||||||
|
if(cost > 0)
|
||||||
{
|
{
|
||||||
someCostsKnown = true;
|
someCostsKnown = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue