TWebEdit and OnKeyPress event

Hi,

I found a bug, when you add event procedure onKeyPress event for TWebEdit like below:

procedure TForm1.WebEdit1KeyPress(Sender: TObject; var Key: Char);
begin
console.log('triggered');
end;

The event is fired twice.

The output is:

triggered
trigerred

when you click any key.

I cannot reproduce this with the latest version v1.8.1.0

Ok ... I reinstalled TMS Web Core to v1.8.1.0 and now is ok ... thx for the answer I will observe it in this version ... if I find something let you know.