URLs not working in tTMSFNCHTMLText

When a URL is included in the text of a tTMSFNCHTMLText, the user cannot click the link to open the URL. For example, I created a new app, put a tTMSFNCHTMLText on the form and set the text to the example in your manual:

This is a test

The link shows up in the URL color and is underlined as it should be, but clicking on it has no effect, nor does it call the OnAnchorClick event.

I've tried this under both Windows 10 and OSX

on Lazarus and Windows 10 it's ok:

TMSFNCHTMLText1.Text := 'This is a <a href="https://tmssoftware.com">test</a>';

I'm using Delphi 10.4

I have tested this here and this is working as expected. Can you provide a test sample?

procedure TForm4.FormCreate(Sender: TObject);
begin
  TMSFNCHTMLText1.Text := 'This is a <a href="https://tmssoftware.com">test</a>';
end;