fix for the linux version

This commit is contained in:
Basile Burg 2014-11-03 09:28:09 +01:00
parent 43f2ee3e11
commit 9a24bf0075
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ procedure TCEProcInputWidget.txtInpKeyPress(Sender: TObject; var Key: char);
begin begin
if fProc = nil then if fProc = nil then
exit; exit;
if key <> lineEnding[1] then if key <> #13 then
exit; exit;
sendInput; sendInput;
end; end;