TAdvStringGrid row selection does not work when clicking on a cell which contains a node / cell turns black

Hi,

i setup the TAdvStringGrid the property "RowSelect" in the MouseActions section enabled. For whatever reason clicking on the cell in the column 0 of an already selected row turns the cell black - selecting any other row shows the normal content of the cell again.
If the cell in the column 0 contains node clicking on this cell does not select the row - however clicking on the node expands and contracts the node as expected.
Are there any other object roperties to consider when working with nodes and RowSelect = True ?

Best regards

Klaus

I cannot reproduce this:Preformatted text

procedure TForm1.FormCreate(Sender: TObject);
begin
  advstringgrid1.MouseActions.RowSelect := true;
  advstringgrid1.RandomFill(false);
  advstringgrid1.AddNode(3,4);
end;

advgridrowselect