mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 05:36:22 +02:00
TAChart: Avoid exception in IDE if Extent.Min >= Extent.Max
git-svn-id: trunk@55129 -
This commit is contained in:
parent
33c52c4fb6
commit
c789291889
@ -1103,7 +1103,9 @@ var
|
||||
s: TBasicChartSeries;
|
||||
a: TChartAxis;
|
||||
begin
|
||||
Extent.CheckBoundsOrder;
|
||||
//Extent.CheckBoundsOrder;
|
||||
// wp: avoid exception in IDE if min > max, but silently bring min/max
|
||||
// into correct order
|
||||
|
||||
for a in AxisList do
|
||||
if a.Transformations <> nil then
|
||||
|
Loading…
Reference in New Issue
Block a user