mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 01:37:51 -06:00
Remove redundant namespace usages
This commit is contained in:
parent
812eeab07a
commit
6101afa68b
1 changed files with 5 additions and 5 deletions
|
@ -87,7 +87,7 @@ Item
|
||||||
iconSource: UM.Theme.getIcon("pos_normal");
|
iconSource: UM.Theme.getIcon("pos_normal");
|
||||||
property bool needBorder: true
|
property bool needBorder: true
|
||||||
checkable: true
|
checkable: true
|
||||||
onClicked: base.setMeshType(normal_mesh_type);
|
onClicked: setMeshType(normal_mesh_type);
|
||||||
style: UM.Theme.styles.tool_button;
|
style: UM.Theme.styles.tool_button;
|
||||||
z: 4
|
z: 4
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,7 @@ Item
|
||||||
iconSource: UM.Theme.getIcon("pos_print_as_support");
|
iconSource: UM.Theme.getIcon("pos_print_as_support");
|
||||||
property bool needBorder: true
|
property bool needBorder: true
|
||||||
checkable:true
|
checkable:true
|
||||||
onClicked: base.setMeshType(support_mesh_type)
|
onClicked: setMeshType(support_mesh_type)
|
||||||
style: UM.Theme.styles.tool_button;
|
style: UM.Theme.styles.tool_button;
|
||||||
z: 3
|
z: 3
|
||||||
}
|
}
|
||||||
|
@ -111,7 +111,7 @@ Item
|
||||||
iconSource: UM.Theme.getIcon("pos_modify_overlaps");
|
iconSource: UM.Theme.getIcon("pos_modify_overlaps");
|
||||||
property bool needBorder: true
|
property bool needBorder: true
|
||||||
checkable:true
|
checkable:true
|
||||||
onClicked: base.setMeshType(infill_mesh_type)
|
onClicked: setMeshType(infill_mesh_type)
|
||||||
style: UM.Theme.styles.tool_button;
|
style: UM.Theme.styles.tool_button;
|
||||||
z: 2
|
z: 2
|
||||||
}
|
}
|
||||||
|
@ -123,7 +123,7 @@ Item
|
||||||
iconSource: UM.Theme.getIcon("pos_modify_dont_support_overlap");
|
iconSource: UM.Theme.getIcon("pos_modify_dont_support_overlap");
|
||||||
property bool needBorder: true
|
property bool needBorder: true
|
||||||
checkable: true
|
checkable: true
|
||||||
onClicked: base.setMeshType(anti_overhang_mesh_type)
|
onClicked: setMeshType(anti_overhang_mesh_type)
|
||||||
style: UM.Theme.styles.tool_button;
|
style: UM.Theme.styles.tool_button;
|
||||||
z: 1
|
z: 1
|
||||||
}
|
}
|
||||||
|
@ -160,7 +160,7 @@ Item
|
||||||
|
|
||||||
checked: current_mesh_type === infill_mesh_type
|
checked: current_mesh_type === infill_mesh_type
|
||||||
visible: current_mesh_type === infill_mesh_type || current_mesh_type === cutting_mesh_type
|
visible: current_mesh_type === infill_mesh_type || current_mesh_type === cutting_mesh_type
|
||||||
onClicked: base.setOverhangsMeshType()
|
onClicked: setOverhangsMeshType()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue