mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 08:28:59 +08:00
Use short for each javascript function
CURA-6033
This commit is contained in:
parent
01783e7f68
commit
c8994102da
@ -18,7 +18,7 @@ Button
|
|||||||
{
|
{
|
||||||
var extruderConfigurations = configuration.extruderConfigurations
|
var extruderConfigurations = configuration.extruderConfigurations
|
||||||
|
|
||||||
for (var index = 0; index < extruderConfigurations.length; index++)
|
for (var index in extruderConfigurations)
|
||||||
{
|
{
|
||||||
var name = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : ""
|
var name = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : ""
|
||||||
|
|
||||||
@ -109,7 +109,7 @@ Button
|
|||||||
{
|
{
|
||||||
var extruderConfigurations = configuration.extruderConfigurations
|
var extruderConfigurations = configuration.extruderConfigurations
|
||||||
var unknownMaterials = []
|
var unknownMaterials = []
|
||||||
for (var index = 0; index < extruderConfigurations.length; index++)
|
for (var index in extruderConfigurations)
|
||||||
{
|
{
|
||||||
var name = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : ""
|
var name = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : ""
|
||||||
|
|
||||||
@ -144,7 +144,8 @@ Button
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea
|
||||||
|
{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
cursorShape: unknownMaterialMessage.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
cursorShape: unknownMaterialMessage.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||||
acceptedButtons: Qt.NoButton
|
acceptedButtons: Qt.NoButton
|
||||||
|
Loading…
x
Reference in New Issue
Block a user