TAdvRichEditor - Actions Bullettype not working

Hi!


I noticed that when I assing action TAdvRichEditorBulletType to a button nothing has happened.
However when I assing TAdvRichEditorNumberedBulletType every thing is working fine.
I looked into the procedure ExecuteTarget(Target: TObject); override;
In the first case I found this:

procedure TAdvRichEditorBulletType.ExecuteTarget(Target: TObject);
begin
  inherited;
end;

In the second case:
procedure TAdvRichEditorNumberedBulletType.ExecuteTarget(Target: TObject);
begin
  inherited;
  with GetControl(Target) do
  begin
    SetSelectionBullets(btNumber);
  end;
end;

I think something is missing or I did something wrong.

Thanks for you help.


Thanks for reporting. We have fixed this. Next update will address this.

Thanks for your support.


Is it possible that the ReadOnly is not working as well? I set it to True and add some text with AddText to the RichEditor and when I run the program I can type in it.  

I have retested this here but when ReadOnly = true, I cannot longer do any keyboard interaction with TAdvRichEditor.