diff --git a/src/ce_procinput.pas b/src/ce_procinput.pas index 1723dbca..d6502ced 100644 --- a/src/ce_procinput.pas +++ b/src/ce_procinput.pas @@ -53,7 +53,7 @@ procedure TCEProcInputWidget.txtInpKeyPress(Sender: TObject; var Key: char); begin if fProc = nil then exit; - if key <> lineEnding[1] then + if key <> #13 then exit; sendInput; end;