File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ ToolIndicatorPage {
146
146
147
147
GridLayout {
148
148
Layout .fillWidth : true
149
- columns: 2
149
+ columns: 1
150
150
rowSpacing: ScreenTools .defaultFontPixelHeight * 0.25
151
151
columnSpacing: ScreenTools .defaultFontPixelWidth * 2
152
152
@@ -163,6 +163,19 @@ ToolIndicatorPage {
163
163
}
164
164
}
165
165
166
+ LabelledLabel {
167
+ Layout .fillWidth : true
168
+ label: qsTr (" Total Errors" )
169
+ labelText: {
170
+ if (! _escDataAvailable || _allMotors .length === 0 ) return na
171
+ var totalErrors = 0
172
+ for (var i = 0 ; i < _allMotors .length ; i++ ) {
173
+ totalErrors += _allMotors[i].errorCount
174
+ }
175
+ return totalErrors .toString ()
176
+ }
177
+ }
178
+
166
179
LabelledLabel {
167
180
Layout .fillWidth : true
168
181
label: qsTr (" Max Temperature" )
@@ -180,19 +193,6 @@ ToolIndicatorPage {
180
193
}
181
194
}
182
195
183
- LabelledLabel {
184
- Layout .fillWidth : true
185
- label: qsTr (" Total Errors" )
186
- labelText: {
187
- if (! _escDataAvailable || _allMotors .length === 0 ) return na
188
- var totalErrors = 0
189
- for (var i = 0 ; i < _allMotors .length ; i++ ) {
190
- totalErrors += _allMotors[i].errorCount
191
- }
192
- return totalErrors .toString ()
193
- }
194
- }
195
-
196
196
LabelledLabel {
197
197
Layout .fillWidth : true
198
198
label: qsTr (" Max Current" )
You can’t perform that action at this time.
0 commit comments