POChecker: show popup menu in Graphical Statistics form only on right mouse button click

git-svn-id: trunk@52392 -
This commit is contained in:
maxim 2016-05-26 13:28:45 +00:00
parent c51bc87bab
commit d467aa5554

View File

@ -151,14 +151,17 @@ var
AStat: TStat;
CurrScreenPoint: TPoint;
begin
anItem := Listview.GetItemAt(X, Y);
if Assigned(anItem) then
if Button = mbRight then
begin
anIndex := anItem.Index;
AStat := FPoFamilyStats.Items[anIndex];
Fn := AStat.PoName;
CurrScreenPoint := ListView.ClientToScreen(Point(X, Y));
ContextPopupMenu.PopUp(CurrScreenPoint.X, CurrScreenPoint.Y);
anItem := Listview.GetItemAt(X, Y);
if Assigned(anItem) then
begin
anIndex := anItem.Index;
AStat := FPoFamilyStats.Items[anIndex];
Fn := AStat.PoName;
CurrScreenPoint := ListView.ClientToScreen(Point(X, Y));
ContextPopupMenu.PopUp(CurrScreenPoint.X, CurrScreenPoint.Y);
end;
end;
end;