doesn't set CTRL+C as the default copy shortcut of the terminal

This commit is contained in:
Basile Burg 2019-01-26 09:25:47 +01:00
parent c65592d659
commit 1335208d25
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ const
constructor TTerminalShortcuts.create;
begin
fCopy := KeyToShortCut(word(char('C')), [ssCtrl]);
fPaste:= KeyToShortCut(word(char('V')), [ssCtrl]);
fCopy := KeyToShortCut(word(char('C')), [ssCtrl, ssShift]);
fPaste:= KeyToShortCut(word(char('V')), [ssCtrl, ssShift]);
end;
procedure TTerminalShortcuts.assign(source: TPersistent);