@@ -169,59 +169,60 @@ export class ToolbarWidget extends ReactiveToolbar {
169
169
170
170
// View helpers
171
171
this . addItem (
172
- 'Axes Helper ' ,
172
+ 'Exploded View ' ,
173
173
new CommandToolbarButton ( {
174
- id : CommandIDs . updateAxes ,
174
+ id : CommandIDs . updateExplodedView ,
175
175
label : '' ,
176
176
commands : options . commands
177
177
} )
178
178
) ;
179
179
this . addItem (
180
- 'Exploded View' ,
180
+ 'Clip View' ,
181
181
new CommandToolbarButton ( {
182
- id : CommandIDs . updateExplodedView ,
182
+ id : CommandIDs . updateClipView ,
183
183
label : '' ,
184
184
commands : options . commands
185
185
} )
186
186
) ;
187
187
this . addItem (
188
- 'Camera Settings ' ,
188
+ 'Toggle Wireframe ' ,
189
189
new CommandToolbarButton ( {
190
- id : CommandIDs . updateCameraSettings ,
190
+ id : CommandIDs . wireframe ,
191
191
label : '' ,
192
192
commands : options . commands
193
193
} )
194
194
) ;
195
+ this . addItem ( 'separator6' , new Separator ( ) ) ;
196
+
195
197
this . addItem (
196
- 'Clip View ' ,
198
+ 'Axes Helper ' ,
197
199
new CommandToolbarButton ( {
198
- id : CommandIDs . updateClipView ,
200
+ id : CommandIDs . updateAxes ,
199
201
label : '' ,
200
202
commands : options . commands
201
203
} )
202
204
) ;
203
-
204
- this . addItem ( 'separator6' , new Separator ( ) ) ;
205
205
this . addItem (
206
- 'Toggle console ' ,
206
+ 'Camera Settings ' ,
207
207
new CommandToolbarButton ( {
208
- id : CommandIDs . toggleConsole ,
209
- commands : options . commands ,
208
+ id : CommandIDs . updateCameraSettings ,
210
209
label : '' ,
211
- icon : terminalIcon
210
+ commands : options . commands
212
211
} )
213
212
) ;
213
+ this . addItem ( 'separator7' , new Separator ( ) ) ;
214
214
215
215
this . addItem (
216
- 'Toggle Wireframe ' ,
216
+ 'Toggle console ' ,
217
217
new CommandToolbarButton ( {
218
- id : CommandIDs . wireframe ,
218
+ id : CommandIDs . toggleConsole ,
219
+ commands : options . commands ,
219
220
label : '' ,
220
- commands : options . commands
221
+ icon : terminalIcon
221
222
} )
222
223
) ;
223
224
224
- this . addItem ( 'separator7 ' , new Separator ( ) ) ;
225
+ this . addItem ( 'separator8 ' , new Separator ( ) ) ;
225
226
( options . externalCommands ?? [ ] ) . forEach ( cmd => {
226
227
this . addItem (
227
228
cmd . name ,
0 commit comments