mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-11 20:48:57 +08:00
CURA-4485 Minor changes
This commit is contained in:
parent
9ad0fd2b83
commit
87ba4056ee
@ -121,7 +121,7 @@ Item
|
|||||||
function isClusterPrinter() {
|
function isClusterPrinter() {
|
||||||
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
||||||
// This is a non cluster printer or the cluster it is just one printer
|
// 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 false
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ Menu
|
|||||||
{
|
{
|
||||||
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
||||||
// This is a non cluster printer or the cluster it is just one printer
|
// 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 false
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ Menu
|
|||||||
{
|
{
|
||||||
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
var clusterSize = Cura.MachineManager.printerOutputDevices[0].clusterSize
|
||||||
// This is a non cluster printer or the cluster it is just one printer
|
// 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 false
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user