Hi, do you found a solution?
I had the same probem and i just only found a workaround to handle this issue manually:
procedure TFormMain.VSTMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
var
HitInfo : THitInfo;
hh: integer;
begin
hh := VST.Header.Height + 1;
if (y < hh) then exit;
VST.GetHitTestInfoAt(X, Y, true, HitInfo);
if (Button = mbRight) then begin
if assigned(HitInfo.HitNode) then
VSTRowsPopupMenu.PopUp;
end;
end;
procedure TFormMain.VSTHeaderMouseDown(Sender: TVTHeader; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
if (Button = mbRight) then begin
VSTHeaderPopupMenu.PopUp;
end;
end;
/L