From 9a24bf00750b74221a2933d2a8da1e766714e284 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 3 Nov 2014 09:28:09 +0100 Subject: [PATCH] fix for the linux version --- src/ce_procinput.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;