@@ -223,12 +223,15 @@ export class DrawIODocumentWidget extends DocumentWidget<DrawIOWidget> {
223
223
224
224
actions [ 'zoomOut' ] . icon = zoomoutIcon ;
225
225
actions [ 'zoomOut' ] . tooltip = 'Zoom Out (Ctrl-(Numpad)/Alt+Mousewheel)' ;
226
- this . toolbar . addItem ( 'zoomOut' , new DrawIOToolbarButton ( actions [ 'zoomOut' ] ) ) ;
226
+ this . toolbar . addItem (
227
+ 'zoomOut' ,
228
+ new DrawIOToolbarButton ( actions [ 'zoomOut' ] )
229
+ ) ;
227
230
228
231
actions [ 'undo' ] . icon = undoIcon ;
229
232
actions [ 'fillColor' ] . tooltip = 'Undo (Ctrl+Z)' ;
230
233
this . toolbar . addItem ( 'undo' , new DrawIOToolbarButton ( actions [ 'undo' ] ) ) ;
231
-
234
+
232
235
actions [ 'redo' ] . icon = redoIcon ;
233
236
actions [ 'redo' ] . tooltip = 'Redo (Ctrl+Shift+Z)' ;
234
237
this . toolbar . addItem ( 'redo' , new DrawIOToolbarButton ( actions [ 'redo' ] ) ) ;
@@ -239,20 +242,29 @@ export class DrawIODocumentWidget extends DocumentWidget<DrawIOWidget> {
239
242
240
243
actions [ 'toFront' ] . icon = toFrontIcon ;
241
244
actions [ 'toFront' ] . tooltip = 'To Front (Ctrl+Shift+F)' ;
242
- this . toolbar . addItem ( 'toFront' , new DrawIOToolbarButton ( actions [ 'toFront' ] ) ) ;
245
+ this . toolbar . addItem (
246
+ 'toFront' ,
247
+ new DrawIOToolbarButton ( actions [ 'toFront' ] )
248
+ ) ;
243
249
244
250
actions [ 'toBack' ] . icon = toBackIcon ;
245
251
actions [ 'toBack' ] . tooltip = 'To Back (Ctrl+Shift+B)' ;
246
252
this . toolbar . addItem ( 'toBack' , new DrawIOToolbarButton ( actions [ 'toBack' ] ) ) ;
247
253
248
254
actions [ 'fillColor' ] . icon = fillColorIcon ;
249
255
actions [ 'fillColor' ] . tooltip = 'Fill Color' ;
250
- this . toolbar . addItem ( 'fillColor' , new DrawIOToolbarButton ( actions [ 'fillColor' ] ) ) ;
251
-
256
+ this . toolbar . addItem (
257
+ 'fillColor' ,
258
+ new DrawIOToolbarButton ( actions [ 'fillColor' ] )
259
+ ) ;
260
+
252
261
actions [ 'strokeColor' ] . icon = strokeColorIcon ;
253
262
actions [ 'strokeColor' ] . tooltip = 'Fill Stroke Color' ;
254
- this . toolbar . addItem ( 'strokeColor' , new DrawIOToolbarButton ( actions [ 'strokeColor' ] ) ) ;
255
-
263
+ this . toolbar . addItem (
264
+ 'strokeColor' ,
265
+ new DrawIOToolbarButton ( actions [ 'strokeColor' ] )
266
+ ) ;
267
+
256
268
actions [ 'shadow' ] . icon = shadowIcon ;
257
269
actions [ 'shadow' ] . tooltip = 'Shadow' ;
258
270
this . toolbar . addItem ( 'shadow' , new DrawIOToolbarButton ( actions [ 'shadow' ] ) ) ;
0 commit comments