Procházet zdrojové kódy

Add delete to filebrowser context menu

Steven Silvester před 8 roky
rodič
revize
97cbc90c01
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      examples/filebrowser/src/index.ts

+ 1 - 0
examples/filebrowser/src/index.ts

@@ -219,6 +219,7 @@ function createApp(manager: IServiceManager): void {
   menu.addItem({ command: 'file-rename' });
   menu.addItem({ command: 'file-remove' });
   menu.addItem({ command: 'file-duplicate' });
+  menu.addItem({ command: 'file-delete' });
   menu.addItem({ command: 'file-cut' });
   menu.addItem({ command: 'file-copy' });
   menu.addItem({ command: 'file-paste' });