Skip to content

Commit 048520f

Browse files
committed
Menu labels
1 parent 274370e commit 048520f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/editor.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ export class DrawIODocumentWidget extends DocumentWidget<DrawIOWidget> {
375375

376376
//Direction
377377
this._commands.addCommand('drawio:command/flipH', {
378-
label: 'Left Align',
379-
caption: 'Left Align',
378+
label: 'Flip Horizintal',
379+
caption: 'Flip Horizintal',
380380
execute: () => {
381381
this.content.graph.toggleCellStyles(
382382
this.content.mx.mxConstants.STYLE_FLIPH,
@@ -385,8 +385,8 @@ export class DrawIODocumentWidget extends DocumentWidget<DrawIOWidget> {
385385
}
386386
});
387387
this._commands.addCommand('drawio:command/flipV', {
388-
label: 'Left Align',
389-
caption: 'Left Align',
388+
label: 'Flip Vertical',
389+
caption: 'Flip Vertical',
390390
execute: () => {
391391
this.content.graph.toggleCellStyles(
392392
this.content.mx.mxConstants.STYLE_FLIPV,

0 commit comments

Comments
 (0)