CURA-4485 Minor changes

This commit is contained in:
Diego Prado Gesto 2017-10-25 13:55:30 +02:00
parent 9ad0fd2b83
commit 87ba4056ee
3 changed files with 3 additions and 3 deletions

View file

@ -121,7 +121,7 @@ Item
function isClusterPrinter() {
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
// This is a non cluster printer or the cluster it is just one printer
if (typeof clusterSize == "undefined" || clusterSize == 1)
if (clusterSize == undefined || clusterSize == 1)
return false
return true
}

View file

@ -18,7 +18,7 @@ Menu
{
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
// This is a non cluster printer or the cluster it is just one printer
if (typeof clusterSize == "undefined" || clusterSize == 1)
if (clusterSize == undefined || clusterSize == 1)
return false
return true
}

View file

@ -18,7 +18,7 @@ Menu
{
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
// This is a non cluster printer or the cluster it is just one printer
if (typeof clusterSize == "undefined" || clusterSize == 1)
if (clusterSize == undefined || clusterSize == 1)
return false
return true
}