mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 12:29:29 +02:00
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:
parent
2ba67fb8ef
commit
4c334b2881
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user