Ghost Hint at DBAdvGrid

Situation:
DBAdvGrid with activated hints.

procedure TForm1.DBAdvGridHint(Sender: TObject; ARow, ACol: Integer;
var hintstr: string);
begin
hintstr:='';
if (arow=1) and (acol=1) then hintstr:='Test';
//debug
form1.Caption:=inttostr(arow)+':'+inttostr(acol)+' - '+hintstr;
end;

If i move the mouse to [1,1] it shows the hint as wanted.
Now i leave the Cols/Rows area and move the cursor to a blank area, but within the grid.
After a second the last hint pops up at this random position. Even if i leave the grid and reenter.

demo

Is this with the latest version?
I retested this here and I could not reproduce this here.
If a problem persists with the latest version, please provide a sample source project with which we can reproduce this here so we can investigate.

It's the latest Version. After my tests today I found out that it occurs only together with AdvOfficeHint.

Put a TDBAdvGrid and a TAdvOfficeHint on a form.

Sample Code:

DBAdvGrid1.ShowHint:=true;

procedure TForm1.DBAdvGrid1GridHint(Sender: TObject; ARow, ACol: Integer;
var hintstr: string);
begin
hintstr:='test';
end;

Now we could see the issue and we fixed it.
The next update will address this.