Update web-console-full-window.component.ts

This commit is contained in:
piotrpekala7 2021-05-07 16:12:03 +02:00
parent 12ba174dfa
commit b51159513f

View File

@ -91,7 +91,7 @@ export class WebConsoleFullWindowComponent implements OnInit {
this.term.attachCustomKeyEventHandler((key: KeyboardEvent) => {
if (key.code === 'KeyC' || key.code === 'KeyV') {
if (key.ctrlKey) {
if (key.ctrlKey && key.shiftKey) {
return false;
}
}