Skip to content

Commit 1b4935d

Browse files
committed
1 parent ec1f0e3 commit 1b4935d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/vs/workbench/services/dialogs/browser/dialogService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class DialogService implements IDialogService {
2424

2525
declare readonly _serviceBrand: undefined;
2626

27-
private allowableCommands = ['copy', 'cut'];
27+
private allowableCommands = ['copy', 'cut', 'editor.action.clipboardCopyAction', 'editor.action.clipboardCopyAction'];
2828

2929
constructor(
3030
@ILogService private readonly logService: ILogService,

src/vs/workbench/services/progress/browser/progressService.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,9 @@ export class ProgressService extends Disposable implements IProgressService {
505505
'workbench.action.quit',
506506
'workbench.action.reloadWindow',
507507
'copy',
508-
'cut'
508+
'cut',
509+
'editor.action.clipboardCopyAction',
510+
'editor.action.clipboardCutAction'
509511
];
510512

511513
let dialog: Dialog;

0 commit comments

Comments
 (0)