mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
TAChart: Fix crash when Hide is called for an inactive chart tool.
(cherry picked from commit 72a834edba
)
This commit is contained in:
parent
85c4c556e6
commit
57a394e4ae
@ -2183,18 +2183,24 @@ end;
|
||||
|
||||
procedure TBasicChartTool.Activate;
|
||||
begin
|
||||
FChart.FActiveToolIndex := Index;
|
||||
FChart.MouseCapture := true;
|
||||
FChart.FDisablePopupMenu := false;
|
||||
FStartMousePos := Mouse.CursorPos;
|
||||
if Assigned(FChart) then
|
||||
begin
|
||||
FChart.FActiveToolIndex := Index;
|
||||
FChart.MouseCapture := true;
|
||||
FChart.FDisablePopupMenu := false;
|
||||
FStartMousePos := Mouse.CursorPos;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TBasicChartTool.Deactivate;
|
||||
begin
|
||||
FChart.MouseCapture := false;
|
||||
FChart.FActiveToolIndex := -1;
|
||||
if PopupMenuConflict then
|
||||
FChart.FDisablePopupMenu := true;
|
||||
if Assigned(FChart) then
|
||||
begin
|
||||
FChart.MouseCapture := false;
|
||||
FChart.FActiveToolIndex := -1;
|
||||
if PopupMenuConflict then
|
||||
FChart.FDisablePopupMenu := true;
|
||||
end;
|
||||
end;
|
||||
|
||||
function TBasicChartTool.PopupMenuConflict: Boolean;
|
||||
|
@ -2202,7 +2202,7 @@ begin
|
||||
ADrawer.SetXor(false);
|
||||
end;
|
||||
tdmNormal:
|
||||
FChart.StyleChanged(Self);
|
||||
if Assigned(FChart) then FChart.StyleChanged(Self);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user