IDE: GotoLine dialog: allow Ctrl+C, Ctrl+V, Ctrl+X in the Edit (regression introduced by me in r60108 #df0b4e4aa9).

git-svn-id: trunk@60137 -
This commit is contained in:
bart 2019-01-21 20:56:22 +00:00
parent 2ba67fb8ef
commit 4c334b2881

View File

@ -51,7 +51,7 @@ implementation
procedure TfrmGoto.Edit1KeyPress(Sender: TObject; var Key: char);
begin
if not (UpCase(Key) in [#8,'0'..'9']) then
if not (UpCase(Key) in [^C,^V,^X,#8,'0'..'9']) then
Key:=#0;
end;