Bug: Changing text-color in WebEdit causes cursor-jump

When I change the text-color in a WebEdit-Field, the cursor jumps always back to position 0.
That's a bit frustrating for the users

procedure TForm1.WebEdit1Change(Sender: TObject);
begin
  if Pos('xxx', WebEdit1.Text) = 0 then
  begin
    WebEdit1.Font.Color := clRed;
  end
  else
  begin
    WebEdit1.Font.Color := clWindowText;
  end;
end;

We applied an improvement for this.
The next update will have this improvement.

Thank you!
I tested it with .Color and it's the same problem, I think.

It should be fixed in the next update.

Hi Bruno,
the bug with Font.Color is fixed.
But with WebEdit1.Color it's still existing.

Thanks for reporting. We fixed this too now.