Issue with balloon hint and EditOnDblClickOnly

Hi,
here is an issue with the AdvStringGrid.
Delphi XE8
TMS Component Pack 7.9.0.1

When setting balloon info in a OnCellValidateEvent to get a balloon to pop when the grid EditOnDblClickOnly is true doesn't work.

To reprocude:
Create a new projets with a grid and use the following code. When you change a value in a cell you will get a balloon. Now uncomment the AdvStringGrid1.MouseActions.EditOnDblClickOnly := True; line and try the same thing again.  No balloon will appear.

procedure TForm1.FormCreate(Sender: TObject);
begin
   AdvStringGrid1.Options := AdvStringGrid1.Options + [goEditing];
   AdvStringGrid1.RandomFill;
   AdvStringGrid1.Balloon.Enable := True;
   //AdvStringGrid1.MouseActions.EditOnDblClickOnly := True;
end;

procedure TForm1.AdvStringGrid1CellValidate(Sender: TObject; ACol, ARow: Integer; var Value: string; var Valid: Boolean);
begin
   Valid := False;
   AdvStringGrid1.InvalidEntryTitle := 'Asdf';
   AdvStringGrid1.InvalidEntryText := 'Asdf';
end;


Help would be appreciated.

Thanks!

This turned out to be a non-trivial issue but we traced &solved this now. The next update will address this.