Skip to content

Commit a305cd1

Browse files
committed
update
1 parent a7bba10 commit a305cd1

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

qml_qt6/CustomSupport.qml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -96,55 +96,55 @@ Item
9696
checkable: true
9797
onClicked: setSType('cube')
9898
checked: UM.ActiveTool.properties.getValue("SType") === 'cube'
99-
z: 4; // Profondeur
99+
z: 4 // Profondeur
100100
}
101101

102102
UM.ToolbarButton
103103
{
104-
id: abutmentButton;
105-
text: catalog.i18nc("@label", "Abutment");
104+
id: abutmentButton
105+
text: catalog.i18nc("@label", "Abutment")
106106
toolItem: UM.ColorImage
107107
{
108108
source: Qt.resolvedUrl("type_abutment.svg")
109109
color: UM.Theme.getColor("icon")
110110
}
111-
property bool needBorder: true;
112-
checkable: true;
113-
onClicked: setSType('abutment');
114-
checked: UM.ActiveTool.properties.getValue("SType") === 'abutment';
115-
z: 3; // Profondeur
111+
property bool needBorder: true
112+
checkable: true
113+
onClicked: setSType('abutment')
114+
checked: UM.ActiveTool.properties.getValue("SType") === 'abutment'
115+
z: 3 // Profondeur
116116
}
117117

118118
UM.ToolbarButton
119119
{
120-
id: freeformButton;
121-
text: catalog.i18nc("@label", "Freeshape");
120+
id: freeformButton
121+
text: catalog.i18nc("@label", "Freeshape")
122122
toolItem: UM.ColorImage
123123
{
124124
source: Qt.resolvedUrl("type_freeform.svg")
125125
color: UM.Theme.getColor("icon")
126126
}
127-
// property bool needBorder: true;
128-
checkable:true;
129-
onClicked: setSType('freeform');
130-
checked: UM.ActiveTool.properties.getValue("SType") === 'freeform';
131-
z: 2; // Profondeur
127+
property bool needBorder: true
128+
checkable:true
129+
onClicked: setSType('freeform')
130+
checked: UM.ActiveTool.properties.getValue("SType") === 'freeform'
131+
z: 2 // Profondeur
132132
}
133133

134134
UM.ToolbarButton
135135
{
136-
id: customButton;
137-
text: catalog.i18nc("@label", "custom");
136+
id: customButton
137+
text: catalog.i18nc("@label", "custom")
138138
toolItem: UM.ColorImage
139139
{
140140
source: Qt.resolvedUrl("type_custom.svg")
141141
color: UM.Theme.getColor("icon")
142142
}
143-
property bool needBorder: true;
144-
checkable:true;
145-
onClicked: setSType('custom');
146-
checked: UM.ActiveTool.properties.getValue("SType") === 'custom';
147-
z: 1; // Profondeur
143+
property bool needBorder: true
144+
checkable:true
145+
onClicked: setSType('custom')
146+
checked: UM.ActiveTool.properties.getValue("SType") === 'custom'
147+
z: 1 // Profondeur
148148
}
149149
}
150150
Row // CheckBox Row

qml_qt6/type_abutment.svg

Lines changed: 4 additions & 4 deletions
Loading

0 commit comments

Comments
 (0)