mirror of https://gitlab.com/basile.b/dexed.git
doesn't set CTRL+C as the default copy shortcut of the terminal
This commit is contained in:
parent
c65592d659
commit
1335208d25
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue